fceugx/source/ngc/fileop.h

35 lines
866 B
C
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
* FCE Ultra 0.98.12
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* fatop.h
*
* FAT File operations
****************************************************************************/
#ifndef _FATOP_H_
#define _FATOP_H_
#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:/"
bool ChangeFATInterface(int method, bool silent);
int ParseFATdirectory(int method);
2008-10-14 11:21:58 +02:00
int LoadFATSzFile(char * filepath, unsigned char * rbuffer);
2008-11-12 09:40:09 +01:00
int SaveFATFile (char * sbuffer, char *filepath, int length, bool silent);
int LoadFATFile (char * sbuffer, char *filepath, int length, bool silent);
2008-09-02 03:57:21 +02:00
extern char currFATdir[MAXPATHLEN];
2008-10-14 11:21:58 +02:00
extern FILE * fatfile;
2008-09-02 03:57:21 +02:00
#endif