2010-02-27 19:18:01 +01:00
|
|
|
#ifndef _DISC_H_
|
|
|
|
#define _DISC_H_
|
|
|
|
|
2009-09-27 20:19:53 +02:00
|
|
|
#include <gccore.h> /* for define ATTRIBUTE_PACKED */
|
|
|
|
|
2010-02-27 19:18:01 +01:00
|
|
|
#ifdef __cplusplus
|
2010-09-19 01:16:05 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2010-02-27 19:18:01 +01:00
|
|
|
#endif
|
2010-09-18 13:46:25 +02:00
|
|
|
|
2011-07-26 00:28:22 +02:00
|
|
|
/* Disc header structure */
|
|
|
|
struct discHdr
|
|
|
|
{
|
|
|
|
/* Game ID */
|
|
|
|
u8 id[6];
|
|
|
|
|
|
|
|
/* Game version */
|
|
|
|
u16 version;
|
|
|
|
|
|
|
|
/* Audio streaming */
|
|
|
|
u8 streaming;
|
|
|
|
u8 bufsize;
|
|
|
|
|
|
|
|
/* Padding */
|
|
|
|
u8 is_ciso;
|
|
|
|
u8 unused1[13];
|
|
|
|
|
|
|
|
/* Magic word */
|
|
|
|
u32 magic;
|
|
|
|
|
|
|
|
/* Padding */
|
|
|
|
u8 unused2[4];
|
|
|
|
|
|
|
|
/* Game title */
|
|
|
|
char title[64];
|
|
|
|
|
|
|
|
/* Encryption/Hashing */
|
|
|
|
u8 encryption;
|
|
|
|
u8 h3_verify;
|
|
|
|
|
|
|
|
/* Padding */
|
|
|
|
u8 unused3[30];
|
|
|
|
} ATTRIBUTE_PACKED;
|
|
|
|
|
|
|
|
/* Prototypes */
|
|
|
|
s32 Disc_Init(void);
|
|
|
|
s32 Disc_Open(void);
|
|
|
|
s32 Disc_Wait(void);
|
|
|
|
void Disc_SetLowMem(void);
|
|
|
|
s32 Disc_SetUSB(const u8 *);
|
|
|
|
s32 Disc_ReadHeader(void *);
|
|
|
|
s32 Disc_IsWii(void);
|
|
|
|
s32 Disc_FindPartition(u64 *outbuf);
|
|
|
|
void PatchCountryStrings(void *Address, int Size);
|
|
|
|
void Disc_SelectVMode(u8 videoselected);
|
2011-09-03 11:39:26 +02:00
|
|
|
s32 Disc_JumpToEntrypoint(s32 hooktype, u32 dolparameter);
|
2009-07-30 07:41:12 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2009-05-03 20:53:31 +02:00
|
|
|
#endif
|
|
|
|
|
2009-07-30 07:41:12 +02:00
|
|
|
#endif
|