mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
30 lines
668 B
C
30 lines
668 B
C
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* dvd.h
|
|
*
|
|
* DVD loading routines
|
|
****************************************************************************/
|
|
|
|
#ifndef _DVD_H_
|
|
#define _DVD_H_
|
|
|
|
int getpvd ();
|
|
int ParseDVDdirectory ();
|
|
int LoadDVDFile (unsigned char *buffer, int length);
|
|
bool TestDVD();
|
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
|
int dvd_safe_read (void *dst, unsigned int len, u64 offset);
|
|
bool SwitchDVDFolder(char dir[]);
|
|
#ifdef HW_DOL
|
|
void dvd_motor_off ();
|
|
#endif
|
|
|
|
extern u64 dvddir;
|
|
extern int dvddirlength;
|
|
|
|
#endif
|