snes9xgx/source/ngc/fileop.h

36 lines
826 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-09-23 06:13:33 +02: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-09-27 00:28:57 +02:00
int LoadFATFile ();
int SaveBufferToFAT (char *filepath, int datasize, bool silent);
int LoadBufferFromFAT (char *filepath, bool silent);
extern char currFATdir[MAXPATHLEN];
#endif