b61acfedff
git-svn-id: svn://localhost/Users/andi/Downloads/code/DML@26 be6c1b03-d731-4111-a574-e37d80d43941
26 lines
398 B
C
26 lines
398 B
C
#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;
|
|
|
|
void DVDReadConfig( void );
|
|
s32 DVDSelectGame( void );
|
|
|
|
u32 FSTInit( void );
|
|
void FSTRead( char *Buffer, u32 Length, u32 Offset );
|
|
|
|
#endif
|