fceugx/source/ngc/filesel.h

50 lines
1.1 KiB
C
Raw Normal View History

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_
#include <unistd.h>
2008-10-09 06:25:35 +02:00
#define SAVEBUFFERSIZE (512 * 1024)
2008-09-02 03:57:21 +02:00
#define MAXJOLIET 255
2008-10-13 23:59:05 +02:00
#define MAXDISPLAY 50
2008-09-02 03:57:21 +02:00
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];
extern bool isWii;
extern int offset;
extern int selection;
extern char currentdir[MAXPATHLEN];
extern int maxfiles;
extern unsigned char savebuffer[];
extern char romFilename[];
extern int nesGameType;
2008-09-02 03:57:21 +02:00
void ClearSaveBuffer ();
2008-10-13 20:15:03 +02:00
bool MakeROMPath(char filepath[], int method);
2008-09-02 03:57:21 +02:00
int OpenROM (int method);
int autoLoadMethod();
int autoSaveMethod();
int FileSortCallback(const void *f1, const void *f2);
void StripExt(char* returnstring, char * inputstring);
#endif