snes9xgx/source/ngc/filebrowser.h

61 lines
1.6 KiB
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
* crunchy2 May 2007
* Michniewski 2008
2009-03-11 18:28:37 +01:00
* Tantric 2008-2009
2008-08-14 00:44:59 +02:00
*
2009-03-28 20:03:35 +01:00
* filebrowser.h
2008-08-14 00:44:59 +02:00
*
* Generic file routines - reading, writing, browsing
****************************************************************************/
2009-03-28 20:03:35 +01:00
#ifndef _FILEBROWSER_H_
#define _FILEBROWSER_H_
#include <unistd.h>
#include <gccore.h>
2008-08-14 00:44:59 +02:00
#define MAXJOLIET 255
#define MAXDISPLAY 40
2008-08-14 00:44:59 +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
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;
2008-12-18 19:36:30 +01:00
extern char rootdir[10];
extern unsigned long SNESROMSize;
2008-08-12 05:25:16 +02:00
bool MakeFilePath(char filepath[], int type, int method, char * filename = NULL, int filenum = -2);
2009-03-11 18:28:37 +01:00
int UpdateDirName(int method);
int OpenGameList();
int autoLoadMethod();
int autoSaveMethod(bool silent);
int FileSortCallback(const void *f1, const void *f2);
2008-08-14 00:44:59 +02:00
void StripExt(char* returnstring, char * inputstring);
2009-03-11 18:28:37 +01:00
bool IsSz();
void ResetBrowser();
2009-03-11 18:28:37 +01:00
int BrowserLoadSz(int method);
int BrowserChangeFolder(int method);
int BrowserLoadFile(int method);
#endif