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,25 @@
#ifndef MSMSE_H
#define MSMSE_H
#include "dolphin.h"
#include "dolphin/types.h"
#include "game/msm.h"
#include "msm/msmsys.h"
#include "dolphin.h"
s32 msmSeInit(s32 *, DVDFileInfo *);
void msmSePeriodicProc(void);
MSMSE* msmSeGetIndexPtr(s32 arg0);
void msmSeDelListener(void);
s32 msmSeUpdataListener(Vec* pos, Vec* heading);
s32 msmSeSetListener(Vec* pos, Vec* heading, float sndDist, float sndSpeed, MSM_SELISTENER* listener);
s32 msmSeGetEntryID(s32 seId, int* seNo);
s32 msmSeGetNumPlay(BOOL baseGrp);
s32 msmSeGetStatus(int seNo);
void msmSeSetMasterVolume(s32 arg0);
s32 msmSeSetParam(int seNo, MSM_SEPARAM* param);
void msmSePauseAll(BOOL pause, s32 speed);
void msmSeStopAll(BOOL checkGrp, s32 speed);
s32 msmSeStop(int seNo, s32 speed);
int msmSePlay(int seId, MSM_SEPARAM *param);
s32 msmSeInit(sysData* arg0, DVDFileInfo* arg1);
#endif