2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
2008-09-26 06:34:33 +02:00
|
|
|
* Michniewski 2008
|
2008-08-14 00:44:59 +02:00
|
|
|
* Tantric August 2008
|
|
|
|
*
|
|
|
|
* filesel.h
|
|
|
|
*
|
|
|
|
* Generic file routines - reading, writing, browsing
|
2008-08-06 03:09:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCFILESEL_
|
|
|
|
#define _NGCFILESEL_
|
|
|
|
|
2008-09-26 06:34:33 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define SAVEBUFFERSIZE (512 * 1024)
|
2008-08-14 00:44:59 +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];
|
2008-09-26 06:34:33 +02:00
|
|
|
extern unsigned char *savebuffer;
|
|
|
|
extern int offset;
|
|
|
|
extern int selection;
|
|
|
|
extern char currentdir[MAXPATHLEN];
|
|
|
|
extern int maxfiles;
|
2008-08-12 05:25:16 +02:00
|
|
|
|
|
|
|
void ClearSaveBuffer ();
|
2008-08-07 05:25:02 +02:00
|
|
|
int OpenROM (int method);
|
|
|
|
int autoLoadMethod();
|
|
|
|
int autoSaveMethod();
|
2008-08-10 05:14:39 +02:00
|
|
|
int FileSortCallback(const void *f1, const void *f2);
|
2008-08-14 00:44:59 +02:00
|
|
|
void StripExt(char* returnstring, char * inputstring);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|