2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-08-12 05:25:16 +02:00
|
|
|
* Snes9x 1.50
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* Nintendo Gamecube DVD
|
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* svpe & crunchy2 June 2007
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCDVD_
|
|
|
|
#define _NGCDVD_
|
|
|
|
|
2008-08-12 05:25:16 +02:00
|
|
|
int getpvd ();
|
|
|
|
int ParseDVDdirectory ();
|
|
|
|
int LoadDVDFile (unsigned char *buffer);
|
2008-08-16 02:02:08 +02:00
|
|
|
bool TestDVD();
|
2008-08-06 03:09:59 +02:00
|
|
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
2008-08-16 02:02:08 +02:00
|
|
|
bool SwitchDVDFolder(char dir[]);
|
2008-09-10 07:57:37 +02:00
|
|
|
void SetDVDDriveType();
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|