2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Snes9x 1.50
|
|
|
|
*
|
|
|
|
* Nintendo Gamecube Filesel - borrowed from GPP
|
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCFILESEL_
|
|
|
|
#define _NGCFILESEL_
|
|
|
|
|
|
|
|
int OpenDVD ();
|
|
|
|
int OpenSMB ();
|
2008-08-06 03:55:59 +02:00
|
|
|
int OpenSD ();
|
2008-08-06 04:31:44 +02:00
|
|
|
int OpenUSB ();
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#define LOAD_DVD 1
|
|
|
|
#define LOAD_SMB 2
|
|
|
|
#define LOAD_SDC 4
|
2008-08-06 04:31:44 +02:00
|
|
|
#define LOAD_USB 8
|
|
|
|
#define ROOTSDDIR "fat3:/"
|
2008-08-06 03:55:59 +02:00
|
|
|
#define SNESROMDIR "snes9x/roms"
|
|
|
|
#define SNESSAVEDIR "snes9x/saves"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|