mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
36 lines
852 B
C
36 lines
852 B
C
/****************************************************************************
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
|
*
|
|
* softdev July 2006
|
|
* crunchy2 May 2007
|
|
* Michniewski 2008
|
|
* Tantric August 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:/"
|
|
|
|
bool ChangeFATInterface(int method, bool silent);
|
|
int ParseFATdirectory(int method);
|
|
int LoadFATFile (char *filename, int length);
|
|
int SaveBufferToFAT (char *filepath, int datasize, bool silent);
|
|
int LoadBufferFromFAT (char *filepath, bool silent);
|
|
|
|
extern char currFATdir[MAXPATHLEN];
|
|
|
|
#endif
|