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-10-01 07:25:38 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
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
|
|
|
|
{
|
2008-12-30 01:05:57 +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-19 23:04:55 +01:00
|
|
|
extern char rootdir[10];
|
2008-12-30 01:05:57 +01:00
|
|
|
|
2008-10-01 07:25:38 +02:00
|
|
|
extern char romFilename[];
|
|
|
|
extern int nesGameType;
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-11-12 09:40:09 +01:00
|
|
|
bool MakeFilePath(char filepath[], int type, int method);
|
2008-09-02 03:57:21 +02:00
|
|
|
int OpenROM (int method);
|
|
|
|
int autoLoadMethod();
|
2008-12-22 09:38:49 +01:00
|
|
|
int autoSaveMethod(bool silent);
|
2008-09-02 03:57:21 +02:00
|
|
|
int FileSortCallback(const void *f1, const void *f2);
|
|
|
|
void StripExt(char* returnstring, char * inputstring);
|
2008-12-30 01:05:57 +01:00
|
|
|
void ResetBrowser();
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|