mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-10 15:49:26 +01:00
15 lines
251 B
C
15 lines
251 B
C
|
#include <sdcard.h>
|
||
|
|
||
|
#define MAXJOLIET 256
|
||
|
#define MAXFILES 1000
|
||
|
|
||
|
typedef struct {
|
||
|
char filename[MAXJOLIET];
|
||
|
char sdcardpath[SDCARD_MAX_PATH_LEN];
|
||
|
u64 offset;
|
||
|
unsigned int length;
|
||
|
char flags;
|
||
|
}FILEENTRIES;
|
||
|
|
||
|
extern FILEENTRIES filelist[MAXFILES];
|