2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* filesel.h
|
|
|
|
*
|
|
|
|
* Generic file routines - reading, writing, browsing
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCFILESEL_
|
|
|
|
#define _NGCFILESEL_
|
|
|
|
|
2008-09-06 20:24:52 +02:00
|
|
|
#define SAVEBUFFERSIZE (64 * 1024)
|
2008-09-02 03:57:21 +02:00
|
|
|
#define MAXJOLIET 255
|
|
|
|
#define MAXDISPLAY 54
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
u64 offset;
|
|
|
|
unsigned int length;
|
|
|
|
char flags;
|
|
|
|
char filename[MAXJOLIET + 1];
|
|
|
|
char displayname[MAXDISPLAY + 1];
|
|
|
|
} FILEENTRIES;
|
|
|
|
|
|
|
|
#define MAXFILES 2000 // Restrict to 2000 files per dir
|
|
|
|
extern FILEENTRIES filelist[MAXFILES];
|
|
|
|
|
|
|
|
void ClearSaveBuffer ();
|
|
|
|
int OpenROM (int method);
|
|
|
|
int autoLoadMethod();
|
|
|
|
int autoSaveMethod();
|
|
|
|
int FileSortCallback(const void *f1, const void *f2);
|
|
|
|
void StripExt(char* returnstring, char * inputstring);
|
|
|
|
|
|
|
|
#endif
|