Matched most of msmse and msmmus (3 functions left) (#526)

* Matched most of msmse (1 function left)

* Matched most of msmmus (2 functions left)
This commit is contained in:
mrshigure 2025-01-13 06:48:07 -08:00 committed by GitHub
parent cdb1d1fc37
commit f812abd06f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 1022 additions and 119 deletions

View file

@ -1,10 +1,23 @@
#ifndef MSMMUS_H
#define MSMMUS_H
#include "dolphin.h"
#include "dolphin/types.h"
#include "game/msm.h"
#include "msm/msmsys.h"
s32 msmMusInit(s32 *, DVDFileInfo *);
#include "dolphin.h"
void msmMusFdoutEnd(void);
void msmMusPeriodicProc(void);
s32 msmMusGetMidiCtrl(int musNo, s32 channel, s32 ctrl);
s32 msmMusGetNumPlay(BOOL baseGrp);
s32 msmMusGetStatus(int musNo);
void msmMusSetMasterVolume(s32 arg0);
s32 msmMusSetParam(s32 arg0, MSM_MUSPARAM* arg1);
void msmMusPauseAll(BOOL pause, s32 speed);
s32 msmMusPause(int musNo, BOOL pause, s32 speed);
void msmMusStopAll(BOOL checkGrp, s32 speed);
s32 msmMusStop(int musNo, s32 speed);
int msmMusPlay(int musId, MSM_MUSPARAM* musParam);
s32 msmMusInit(sysData* arg0, DVDFileInfo* arg1);
#endif