snes9xgx/source/ngc/fileop.h

37 lines
921 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
2008-08-14 00:44:59 +02:00
*
* softdev July 2006
* crunchy2 May 2007
2008-11-12 08:50:39 +01:00
* Michniewski 2008
2008-08-14 00:44:59 +02:00
* Tantric August 2008
*
2008-08-07 07:19:17 +02:00
* fileop.h
*
* FAT File operations
****************************************************************************/
2008-08-07 07:19:17 +02:00
#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-08-12 05:25:16 +02:00
bool ChangeFATInterface(int method, bool silent);
int ParseFATdirectory(int method);
2008-10-14 11:21:34 +02:00
int LoadFATSzFile(char * filepath, unsigned char * rbuffer);
2008-11-12 08:50:39 +01:00
int SaveFATFile (char * sbuffer, char *filepath, int length, bool silent);
int LoadFATFile (char * sbuffer, char *filepath, int length, bool silent);
extern char currFATdir[MAXPATHLEN];
2008-10-14 11:21:34 +02:00
extern FILE * fatfile;
#endif