/**************************************************************************** * Visual Boy Advance GX * * Tantric September 2008 * * fileop.h * * FAT File operations ****************************************************************************/ #ifndef _FATFILESC_ #define _FATFILESC_ #include #include #include #include #include #include #include #include #define ROOTFATDIR "fat:/" bool ChangeFATInterface(int method, bool silent); int ParseFATdirectory(int method); int LoadFATFile (char * fbuffer, int length); int LoadFATSzFile(char * filepath, unsigned char * rbuffer); int SaveBufferToFAT (char *filepath, int datasize, bool silent); int LoadBufferFromFAT (char *filepath, bool silent); extern char currFATdir[MAXPATHLEN]; extern FILE * fatfile; #endif