mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-24 22:41:12 +01:00
8cdf9df10c
-Rearrange of some functions
14 lines
215 B
C
14 lines
215 B
C
|
|
#define MAXJOLIET 256
|
|
#define MAXFILES 1000
|
|
|
|
typedef struct {
|
|
char filename[MAXJOLIET];
|
|
char sdcardpath[256];
|
|
u64 offset;
|
|
unsigned int length;
|
|
char flags;
|
|
}FILEENTRIES;
|
|
|
|
extern FILEENTRIES filelist[MAXFILES];
|