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-11-12 08:50:39 +01: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-12-18 19:36:30 +01:00
|
|
|
* File operations
|
2008-08-06 03:09:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-18 19:36:30 +01:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
|
|
|
|
2008-08-06 03:39:43 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <fat.h>
|
|
|
|
#include <unistd.h>
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-12-30 01:08:17 +01:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 512)
|
|
|
|
|
2008-12-18 19:36:30 +01:00
|
|
|
void InitDeviceThread();
|
|
|
|
void MountAllFAT();
|
2008-11-17 01:08:51 +01:00
|
|
|
void UnmountAllFAT();
|
2008-12-18 19:36:30 +01:00
|
|
|
bool ChangeInterface(int method, bool silent);
|
2009-03-23 00:16:25 +01:00
|
|
|
int ParseDirectory(int method);
|
2008-12-30 01:08:17 +01:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2008-12-18 19:36:30 +01:00
|
|
|
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
|
2009-03-11 18:28:37 +01:00
|
|
|
u32 LoadFile(char * filepath, int method, bool silent);
|
2008-12-18 19:36:30 +01:00
|
|
|
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
|
|
|
|
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
|
2009-03-11 18:28:37 +01:00
|
|
|
u32 SaveFile(char * filepath, u32 datasize, int method, bool silent);
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-12-30 01:08:17 +01:00
|
|
|
extern unsigned char * savebuffer;
|
2008-12-18 19:36:30 +01:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 09:02:04 +01:00
|
|
|
extern bool isMounted[];
|
2008-12-19 00:22:32 +01:00
|
|
|
extern lwp_t devicethread;
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|