fceugx/source/ngc/filebrowser.h

59 lines
1.5 KiB
C
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
2009-03-28 18:23:08 +01:00
* Tantric 2008-2009
2008-09-02 03:57:21 +02:00
*
2009-03-28 18:23:08 +01:00
* filebrowser.h
2008-09-02 03:57:21 +02:00
*
* Generic file routines - reading, writing, browsing
****************************************************************************/
2009-03-28 18:23:08 +01:00
#ifndef _FILEBROWSER_H_
#define _FILEBROWSER_H_
2008-09-02 03:57:21 +02:00
#include <unistd.h>
2008-09-02 03:57:21 +02:00
#define MAXJOLIET 255
2009-03-30 10:22:55 +02:00
#define MAXDISPLAY 35
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
2009-03-28 18:23:08 +01:00
time_t mtime; // file modified time
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
2009-04-09 09:49:28 +02:00
bool MakeFilePath(char filepath[], int type, int method, char * filename = NULL, int filenum = -2);
2009-03-28 18:23:08 +01:00
int UpdateDirName(int method);
int OpenGameList();
2008-09-02 03:57:21 +02:00
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);
2009-03-28 18:23:08 +01:00
bool IsSz();
void ResetBrowser();
2009-03-28 18:23:08 +01:00
int BrowserLoadSz(int method);
int BrowserChangeFolder(int method);
int BrowserLoadFile(int method);
2008-09-02 03:57:21 +02:00
#endif