2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2008-09-12 05:28:40 +00:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-13 22:44:59 +00:00
|
|
|
*
|
2008-08-06 01:09:59 +00:00
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
2008-09-23 04:13:33 +00:00
|
|
|
* Michniewski 2008
|
2008-08-13 22:44:59 +00:00
|
|
|
* Tantric August 2008
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-08-07 05:19:17 +00:00
|
|
|
* fileop.h
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-09-12 05:28:40 +00:00
|
|
|
* FAT File operations
|
2008-08-06 01:09:59 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-07 05:19:17 +00:00
|
|
|
#ifndef _FATFILESC_
|
|
|
|
#define _FATFILESC_
|
2008-08-06 01:39:43 +00:00
|
|
|
#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>
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2008-08-08 07:57:01 +00:00
|
|
|
#define ROOTFATDIR "fat:/"
|
2008-08-07 03:25:02 +00:00
|
|
|
|
2008-08-12 03:25:16 +00:00
|
|
|
bool ChangeFATInterface(int method, bool silent);
|
|
|
|
int ParseFATdirectory(int method);
|
2008-09-26 22:28:57 +00:00
|
|
|
int LoadFATFile ();
|
2008-08-07 03:25:02 +00:00
|
|
|
int SaveBufferToFAT (char *filepath, int datasize, bool silent);
|
|
|
|
int LoadBufferFromFAT (char *filepath, bool silent);
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2008-08-07 03:25:02 +00:00
|
|
|
extern char currFATdir[MAXPATHLEN];
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#endif
|