Setup msm decompiling

Decompiled msmfio.c
This commit is contained in:
gamemasterplc 2023-12-30 09:37:23 -06:00
parent 52e7394e4e
commit 863b4c50ac
3 changed files with 49 additions and 3 deletions

View file

@ -118,7 +118,10 @@ s32 DVDConvertPathToEntrynum(char* pathPtr);
BOOL DVDReadAsyncPrio(DVDFileInfo* fileInfo, void* addr, s32 length, s32 offset,
DVDCallback callback, s32 prio);
BOOL DVDReadPrio(DVDFileInfo* fileInfo, void* addr, s32 length, s32 offset, s32 prio);
#define DVDReadAsync(fileInfo, addr, length, offset, callback) \
DVDReadAsyncPrio((fileInfo), (addr), (length), (offset), (callback), 2)
#define DVDRead(fileInfo, addr, length, offset) \