2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* svpe & crunchy2 June 2007
|
2008-09-12 07:28:40 +02:00
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* dvd.h
|
|
|
|
*
|
|
|
|
* DVD I/O functions
|
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-09-28 05:12:15 +02:00
|
|
|
#ifndef _NGCDVD_H_
|
|
|
|
#define _NGCDVD_H_
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-08-12 05:25:16 +02:00
|
|
|
int getpvd ();
|
|
|
|
int ParseDVDdirectory ();
|
2008-10-05 23:56:18 +02:00
|
|
|
int LoadDVDFile (unsigned char *buffer, int length);
|
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-09-28 05:12:15 +02:00
|
|
|
#ifdef HW_DOL
|
|
|
|
void dvd_motor_off ();
|
|
|
|
#endif
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|