fceugx/source/ngc/filesel.h

53 lines
1.3 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-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
{
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;
extern char rootdir[10];
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();
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);
void ResetBrowser();
2008-09-02 03:57:21 +02:00
#endif