2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2008-09-12 05:28:40 +00:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* svpe & crunchy2 June 2007
|
2008-09-12 05:28:40 +00:00
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* dvd.h
|
|
|
|
*
|
|
|
|
* DVD I/O functions
|
|
|
|
***************************************************************************/
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#ifndef _NGCDVD_
|
|
|
|
#define _NGCDVD_
|
|
|
|
|
2008-08-12 03:25:16 +00:00
|
|
|
int getpvd ();
|
|
|
|
int ParseDVDdirectory ();
|
2008-09-26 22:28:57 +00:00
|
|
|
int LoadDVDFile ();
|
2008-08-16 00:02:08 +00:00
|
|
|
bool TestDVD();
|
2008-08-06 01:09:59 +00:00
|
|
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
2008-08-16 00:02:08 +00:00
|
|
|
bool SwitchDVDFolder(char dir[]);
|
2008-09-10 05:57:37 +00:00
|
|
|
void SetDVDDriveType();
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#endif
|