2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
2008-09-17 04:27:55 +02:00
|
|
|
* Tantric September 2008
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* 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:/"
|
|
|
|
|
2008-11-17 01:09:38 +01:00
|
|
|
void UnmountAllFAT();
|
2008-09-16 07:42:21 +02:00
|
|
|
bool ChangeFATInterface(int method, bool silent);
|
|
|
|
int ParseFATdirectory(int method);
|
2008-10-15 09:09:07 +02:00
|
|
|
int LoadFATSzFile(char * filepath, unsigned char * rbuffer);
|
2008-11-12 08:53:25 +01:00
|
|
|
int SaveFATFile (char * sbuffer, char *filepath, int length, bool silent);
|
|
|
|
int LoadFATFile (char * sbuffer, char *filepath, int length, bool silent);
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
extern char currFATdir[MAXPATHLEN];
|
2008-10-15 09:09:07 +02:00
|
|
|
extern FILE * fatfile;
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|