2012-06-23 20:08:56 +02:00
|
|
|
#ifndef _DVD_
|
|
|
|
#define _DVD_
|
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
#include "HW.h"
|
|
|
|
#include "Config.h"
|
|
|
|
#include "ff.h"
|
|
|
|
#include "dol.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
u32 SlotID;
|
|
|
|
u32 Region;
|
|
|
|
u32 Gamecount;
|
|
|
|
u32 Config;
|
|
|
|
u8 GameInfo[][0x80];
|
|
|
|
} DVDConfig;
|
|
|
|
|
2012-08-09 02:17:50 +02:00
|
|
|
void DVDReadConfig( void );
|
|
|
|
s32 DVDSelectGame( void );
|
2012-06-23 20:08:56 +02:00
|
|
|
|
|
|
|
u32 FSTInit( void );
|
|
|
|
void FSTRead( char *Buffer, u32 Length, u32 Offset );
|
|
|
|
|
|
|
|
#endif
|