2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* dvd.h
|
|
|
|
*
|
|
|
|
* DVD I/O functions
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCDVD_
|
|
|
|
#define _NGCDVD_
|
|
|
|
|
2008-12-18 19:58:30 +01:00
|
|
|
bool MountDVD(bool silent);
|
2008-12-30 01:10:12 +01:00
|
|
|
int ParseDVDdirectory();
|
|
|
|
void SetDVDdirectory(u64 dir, int length);
|
|
|
|
bool SwitchDVDFolder(char dir[]);
|
|
|
|
|
2008-11-12 08:53:25 +01:00
|
|
|
int LoadDVDFileOffset(unsigned char *buffer, int length);
|
|
|
|
int LoadDVDFile(char * buffer, char *filepath, int datasize, bool silent);
|
2008-10-15 09:09:07 +02:00
|
|
|
int dvd_safe_read (void *dst, unsigned int len, u64 offset);
|
2008-12-30 01:10:12 +01:00
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
void SetDVDDriveType();
|
2008-10-15 09:09:07 +02:00
|
|
|
#ifdef HW_DOL
|
|
|
|
void dvd_motor_off ();
|
|
|
|
#endif
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
#endif
|