mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
21 lines
348 B
C
21 lines
348 B
C
|
#ifndef _LWISO9660_DEVOPTAB_H
|
||
|
#define _LWISO9660_DEVOPTAB_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern int WIIDVD_Init(bool dvdx);
|
||
|
extern void WIIDVD_Close(void);
|
||
|
extern int WIIDVD_Mount(void);
|
||
|
extern void WIIDVD_Unmount(void);
|
||
|
extern int WIIDVD_DiscPresent(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|