2021-10-20 05:46:54 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-01-03 09:43:38 +00:00
|
|
|
#include <types.h>
|
|
|
|
|
2021-10-20 05:46:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void DVDInit(void);
|
|
|
|
|
2022-01-03 09:43:38 +00:00
|
|
|
/* from libogc */
|
|
|
|
typedef struct DVDDiskID {
|
|
|
|
u8 gamename[4];
|
|
|
|
u8 company[2];
|
|
|
|
u8 disknum;
|
|
|
|
u8 gamever;
|
|
|
|
u8 streaming;
|
|
|
|
u8 streambufsize;
|
|
|
|
u8 pad[22];
|
|
|
|
} DVDDiskID;
|
|
|
|
|
2021-10-20 05:46:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|