2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-10-16 03:48:08 +02:00
|
|
|
* Snes9x 1.50
|
|
|
|
*
|
|
|
|
* Nintendo Gamecube Filesel - borrowed from GPP
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCFILESEL_
|
|
|
|
#define _NGCFILESEL_
|
|
|
|
|
2008-10-16 03:48:08 +02:00
|
|
|
int OpenDVD ();
|
|
|
|
int OpenSMB ();
|
|
|
|
int OpenSD (int slot);
|
2008-08-12 05:25:16 +02:00
|
|
|
|
2008-10-16 03:48:08 +02:00
|
|
|
#define LOAD_DVD 1
|
|
|
|
#define LOAD_SMB 2
|
|
|
|
#define LOAD_SDC 4
|
|
|
|
#define SNESROMDIR "SNESROMS"
|
|
|
|
#define SNESSAVEDIR "SNESSAVE"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|