snes9xgx/source/ngc/fileop.h

46 lines
1.2 KiB
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
2008-08-13 22:44:59 +00:00
*
* softdev July 2006
* crunchy2 May 2007
2008-11-12 07:50:39 +00:00
* Michniewski 2008
2008-08-13 22:44:59 +00:00
* Tantric August 2008
*
2008-08-07 05:19:17 +00:00
* fileop.h
*
2008-12-18 18:36:30 +00:00
* File operations
****************************************************************************/
2008-12-18 18:36:30 +00:00
#ifndef _FILEOP_H_
#define _FILEOP_H_
#include <gccore.h>
#include <stdio.h>
#include <string.h>
#include <ogcsys.h>
#include <fat.h>
#include <unistd.h>
#define SAVEBUFFERSIZE (1024 * 512)
2008-12-18 18:36:30 +00:00
void InitDeviceThread();
void MountAllFAT();
void UnmountAllFAT();
2008-12-18 18:36:30 +00:00
bool ChangeInterface(int method, bool silent);
int ParseDirectory(int method);
void AllocSaveBuffer();
void FreeSaveBuffer();
2008-12-18 18:36:30 +00:00
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
2009-03-11 17:28:37 +00:00
u32 LoadFile(char * filepath, int method, bool silent);
2008-12-18 18:36:30 +00:00
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
2009-03-11 17:28:37 +00:00
u32 SaveFile(char * filepath, u32 datasize, int method, bool silent);
extern unsigned char * savebuffer;
2008-12-18 18:36:30 +00:00
extern FILE * file;
extern bool unmountRequired[];
extern bool isMounted[];
extern lwp_t devicethread;
#endif