2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
2008-09-17 04:27:55 +02:00
|
|
|
* Tantric September 2008
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* filesel.h
|
|
|
|
*
|
|
|
|
* Generic file routines - reading, writing, browsing
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _NGCFILESEL_
|
|
|
|
#define _NGCFILESEL_
|
|
|
|
|
2008-09-29 09:35:26 +02:00
|
|
|
#include <unistd.h>
|
2008-09-26 08:23:00 +02:00
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
#define MAXJOLIET 255
|
2008-10-15 09:09:07 +02:00
|
|
|
#define MAXDISPLAY 40
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2008-12-30 01:10:12 +01:00
|
|
|
char dir[MAXPATHLEN]; // directory path of browserList
|
|
|
|
int numEntries; // # of entries in browserList
|
|
|
|
int selIndex; // currently selected index of browserList
|
|
|
|
int pageIndex; // starting index of browserList page display
|
|
|
|
} BROWSERINFO;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
u64 offset; // DVD offset
|
|
|
|
unsigned int length; // file length
|
|
|
|
char isdir; // 0 - file, 1 - directory
|
|
|
|
char filename[MAXJOLIET + 1]; // full filename
|
|
|
|
char displayname[MAXDISPLAY + 1]; // name for browser display
|
|
|
|
} BROWSERENTRY;
|
|
|
|
|
|
|
|
extern BROWSERINFO browser;
|
|
|
|
extern BROWSERENTRY * browserList;
|
2008-12-18 19:58:30 +01:00
|
|
|
extern char rootdir[10];
|
2008-10-15 09:09:07 +02:00
|
|
|
extern char szpath[MAXPATHLEN];
|
|
|
|
extern bool inSz;
|
2008-10-03 08:58:21 +02:00
|
|
|
extern char ROMFilename[512];
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-11-12 08:53:25 +01:00
|
|
|
bool MakeFilePath(char filepath[], int type, int method);
|
2008-09-16 07:42:21 +02:00
|
|
|
int OpenROM (int method);
|
|
|
|
int autoLoadMethod();
|
2008-12-22 10:23:48 +01:00
|
|
|
int autoSaveMethod(bool silent);
|
2008-09-16 07:42:21 +02:00
|
|
|
int FileSortCallback(const void *f1, const void *f2);
|
|
|
|
void StripExt(char* returnstring, char * inputstring);
|
2008-12-30 01:10:12 +01:00
|
|
|
void ResetBrowser();
|
|
|
|
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|