diff options
Diffstat (limited to 'include/SDK/DVD/dvd.h')
-rw-r--r-- | include/SDK/DVD/dvd.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/SDK/DVD/dvd.h b/include/SDK/DVD/dvd.h index 16b8623..7a45e89 100644 --- a/include/SDK/DVD/dvd.h +++ b/include/SDK/DVD/dvd.h @@ -5,7 +5,17 @@ extern "C" {
#endif
-u32 DVDGetCurrentDiskID(void);
+typedef struct DVDDiskID
+{
+ char gameCode[4];
+ char makerCode[2];
+ u8 unk6;
+ u8 unk7;
+} DVDDiskID;
+
+
+DVDDiskID* DVDGetCurrentDiskID(void);
+void DVDInit(void);
#ifdef __cplusplus
}
|