mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 00:22:40 +02:00
-completely restructured how internal wii vc titles get read in, again hopefully it didnt break anything
19 lines
396 B
C
19 lines
396 B
C
#ifndef _FILEOP_H_
|
|
#define _FILEOP_H_
|
|
|
|
s32 WDVD_Init(void);
|
|
s32 WDVD_Close(void);
|
|
s32 WDVD_Read(void *buf, u32 len, u64 offset);
|
|
s32 WDVD_GetHandle();
|
|
|
|
bool WDVD_FST_IsMounted();
|
|
bool WDVD_FST_Mount();
|
|
int WDVD_FST_Open(const char *path);
|
|
int WDVD_FST_OpenDisc(u32 discNum);
|
|
u32 WDVD_FST_LSeek(u32 pos);
|
|
int WDVD_FST_Read(u8 *ptr, s32 len);
|
|
int WDVD_FST_Close();
|
|
bool WDVD_FST_Unmount();
|
|
|
|
#endif
|