mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
25 lines
569 B
C
25 lines
569 B
C
|
/****************************************************************************
|
||
|
* 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_
|
||
|
|
||
|
int getpvd ();
|
||
|
int ParseDVDdirectory ();
|
||
|
int LoadDVDFile (unsigned char *buffer);
|
||
|
bool TestDVD();
|
||
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
||
|
bool SwitchDVDFolder(char dir[]);
|
||
|
void SetDVDDriveType();
|
||
|
|
||
|
#endif
|