diff options
Diffstat (limited to 'include/SDK/DVD')
-rw-r--r-- | include/SDK/DVD/dvd.h | 12 | ||||
-rw-r--r-- | include/SDK/DVD/dvdFatal.h | 14 |
2 files changed, 25 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
}
diff --git a/include/SDK/DVD/dvdFatal.h b/include/SDK/DVD/dvdFatal.h new file mode 100644 index 0000000..3533e71 --- /dev/null +++ b/include/SDK/DVD/dvdFatal.h @@ -0,0 +1,14 @@ +#ifndef POKEREVO_DVDFATAL_H
+#define POKEREVO_DVDFATAL_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+BOOL DVDSetAutoFatalMessaging(BOOL enable);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_DVDFATAL_H
|