mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
587fdbbae2
Now if you use 249 there is no change to R492 before 222. So if you still get blackscreens it wasnt caused by that.
34 lines
604 B
C
34 lines
604 B
C
#ifndef _WDVD_H_
|
|
#define _WDVD_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
s32 WDVD_Init(void);
|
|
s32 WDVD_Close(void);
|
|
s32 WDVD_GetHandle(void);
|
|
s32 WDVD_Reset(void);
|
|
s32 WDVD_ReadDiskId(void *);
|
|
s32 WDVD_Seek(u64);
|
|
s32 WDVD_Offset(u64);
|
|
s32 WDVD_StopLaser(void);
|
|
s32 WDVD_StopMotor(void);
|
|
s32 WDVD_OpenPartition(u64);
|
|
s32 WDVD_ClosePartition(void);
|
|
s32 WDVD_UnencryptedRead(void *, u32, u64);
|
|
s32 WDVD_Read(void *, u32, u64);
|
|
s32 WDVD_WaitForDisc(void);
|
|
s32 WDVD_GetCoverStatus(u32 *);
|
|
s32 WDVD_DisableReset(u8);
|
|
s32 WDVD_SetUSBMode(u8 *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|