2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
2008-08-06 03:09: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-06 03:09:59 +02:00
|
|
|
*
|
2008-08-07 07:19:17 +02:00
|
|
|
* fileop.h
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-09-12 07:28:40 +02:00
|
|
|
* FAT File operations
|
2008-08-06 03:09:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-08-07 07:19:17 +02:00
|
|
|
#ifndef _FATFILESC_
|
|
|
|
#define _FATFILESC_
|
2008-08-06 03:39:43 +02: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 03:09:59 +02:00
|
|
|
|
2008-08-08 09:57:01 +02:00
|
|
|
#define ROOTFATDIR "fat:/"
|
2008-08-07 05:25:02 +02:00
|
|
|
|
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 ();
|
2008-08-07 05:25:02 +02:00
|
|
|
int SaveBufferToFAT (char *filepath, int datasize, bool silent);
|
|
|
|
int LoadBufferFromFAT (char *filepath, bool silent);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-08-07 05:25:02 +02:00
|
|
|
extern char currFATdir[MAXPATHLEN];
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|