mirror of
https://github.com/zeldaret/ss
synced 2026-08-31 01:20:25 -04:00
26 lines
547 B
C
26 lines
547 B
C
#ifndef RVL_SDK_DVD_ID_UTILS_H
|
|
#define RVL_SDK_DVD_ID_UTILS_H
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct DVDDiskID {
|
|
char game[4]; // at 0x0
|
|
char company[2]; // at 0x4
|
|
u8 disk; // at 0x6
|
|
u8 version; // at 0x7
|
|
u8 strmEnable; // at 0x8
|
|
u8 strmBufSize; // at 0x9
|
|
u8 padding[14]; // at 0xA
|
|
u32 rvlMagic; // at 0x18
|
|
u32 gcMagic; // at 0x1C
|
|
} DVDDiskID;
|
|
|
|
BOOL DVDCompareDiskID(const DVDDiskID *id1, const DVDDiskID *id2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|