vbagx/source/ngc/filesel.h

50 lines
1.1 KiB
C
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
2008-09-17 04:27:55 +02:00
* Tantric September 2008
*
* filesel.h
*
* Generic file routines - reading, writing, browsing
****************************************************************************/
#ifndef _NGCFILESEL_
#define _NGCFILESEL_
#include <unistd.h>
2008-09-26 08:23:00 +02:00
2008-10-27 05:31:59 +01:00
#define SAVEBUFFERSIZE (1024 * 1024 * 2)
#define MAXJOLIET 255
#define MAXDISPLAY 40
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 08:23:00 +02:00
extern unsigned char *savebuffer;
extern int offset;
extern int selection;
extern char currentdir[MAXPATHLEN];
extern char szpath[MAXPATHLEN];
extern bool inSz;
2008-09-26 08:23:00 +02:00
extern int maxfiles;
extern char ROMFilename[512];
void AllocSaveBuffer();
void FreeSaveBuffer();
bool MakeROMPath(char filepath[], int method);
int OpenROM (int method);
int autoLoadMethod();
int autoSaveMethod();
int FileSortCallback(const void *f1, const void *f2);
void StripExt(char* returnstring, char * inputstring);
#endif