25 lines
548 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
* svpe & crunchy2 June 2007
* Tantric September 2008
*
* dvd.h
*
* DVD I/O functions
***************************************************************************/
#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();
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();
#endif