mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-12 11:59:08 +01:00
8cc82998ac
(however, I'll keep using that awesome loading bar of it lol) -fixed this strange click sound on game boot
23 lines
408 B
C
23 lines
408 B
C
|
|
#ifndef _DISC_H_
|
|
#define _DISC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
s32 Disc_Open();
|
|
s32 Disc_FindPartition(u64 *outbuf);
|
|
s32 Disc_SetUSB(const u8 *id, bool frag);
|
|
void Disc_SetLowMem();
|
|
void Disc_SetTime();
|
|
|
|
GXRModeObj *Disc_SelectVMode(u8 videoselected, u32 *rmode_reg);
|
|
void Disc_SetVMode(GXRModeObj *rmode, u32 rmode_reg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|