mirror of
https://github.com/dborth/fceugx.git
synced 2025-07-28 03:37:27 +02:00

* Complete rewrite of loading code - FDS / UNIF / NSF support added! * VS games work (coin insert submitted by pakitovic) * Mapping of 'Special' commands - VS coin insert, FDS switch disk (default A) * 480p and DVD now available for GameCube * Improved stability - less crashes!
23 lines
506 B
C
23 lines
506 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);
|
|
bool TestDVD();
|
|
int dvd_read (void *dst, unsigned int len, u64 offset);
|
|
bool SwitchDVDFolder(char dir[]);
|
|
|
|
#endif
|