mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
35 lines
867 B
C
35 lines
867 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* fileop.h
|
|
*
|
|
* FAT File operations
|
|
****************************************************************************/
|
|
|
|
#ifndef _FATFILESC_
|
|
#define _FATFILESC_
|
|
#include <gccore.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ogcsys.h>
|
|
#include <fat.h>
|
|
#include <sys/dir.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
#define ROOTFATDIR "fat:/"
|
|
|
|
void UnmountAllFAT();
|
|
bool ChangeFATInterface(int method, bool silent);
|
|
int ParseFATdirectory(int method);
|
|
int LoadFATSzFile(char * filepath, unsigned char * rbuffer);
|
|
int SaveFATFile (char * sbuffer, char *filepath, int length, bool silent);
|
|
int LoadFATFile (char * sbuffer, char *filepath, int length, bool silent);
|
|
|
|
extern char currFATdir[MAXPATHLEN];
|
|
extern FILE * fatfile;
|
|
|
|
#endif
|