mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
23 lines
502 B
C
23 lines
502 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* 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
|