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
|
2009-03-28 19:03:35 +00:00
|
|
|
* Tantric 2008-2009
|
2008-09-12 05:28:40 +00:00
|
|
|
*
|
|
|
|
* dvd.h
|
|
|
|
*
|
|
|
|
* DVD I/O functions
|
|
|
|
***************************************************************************/
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2008-12-18 18:36:30 +00:00
|
|
|
#ifndef _NGCDVD_
|
|
|
|
#define _NGCDVD_
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2008-12-18 18:36:30 +00:00
|
|
|
bool MountDVD(bool silent);
|
2009-03-23 05:53:21 +00:00
|
|
|
int ParseDVDdirectory();
|
2008-12-30 00:08:17 +00:00
|
|
|
void SetDVDdirectory(u64 dir, int length);
|
|
|
|
bool SwitchDVDFolder(char dir[]);
|
|
|
|
|
2008-11-12 07:50:39 +00:00
|
|
|
int LoadDVDFileOffset(unsigned char *buffer, int length);
|
|
|
|
int LoadDVDFile(char * buffer, char *filepath, int datasize, bool silent);
|
2008-10-14 09:21:34 +00:00
|
|
|
int dvd_safe_read (void *dst, unsigned int len, u64 offset);
|
2008-12-30 00:08:17 +00:00
|
|
|
|
2008-09-10 05:57:37 +00:00
|
|
|
void SetDVDDriveType();
|
2008-09-28 03:12:15 +00:00
|
|
|
#ifdef HW_DOL
|
|
|
|
void dvd_motor_off ();
|
|
|
|
#endif
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#endif
|