2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* Tantric 2008-2009
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
2009-03-28 18:23:08 +01:00
|
|
|
* fileop.h
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
2008-12-30 01:05:57 +01:00
|
|
|
* File operations
|
2008-09-02 03:57:21 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
2009-03-28 18:23:08 +01:00
|
|
|
|
2008-09-02 03:57:21 +02:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <fat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 512)
|
|
|
|
|
2008-12-19 23:04:55 +01:00
|
|
|
void InitDeviceThread();
|
2009-05-06 19:27:20 +02:00
|
|
|
void ResumeDeviceThread();
|
|
|
|
void HaltDeviceThread();
|
2008-12-19 23:04:55 +01:00
|
|
|
void MountAllFAT();
|
2008-11-17 01:09:31 +01:00
|
|
|
void UnmountAllFAT();
|
2008-12-19 23:04:55 +01:00
|
|
|
bool ChangeInterface(int method, bool silent);
|
2009-03-28 18:23:08 +01:00
|
|
|
int ParseDirectory(int method);
|
2008-12-30 01:05:57 +01:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2009-01-25 08:01:50 +01:00
|
|
|
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
|
2009-03-28 18:23:08 +01:00
|
|
|
u32 LoadFile(char * filepath, int method, bool silent);
|
2008-12-19 23:04:55 +01:00
|
|
|
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
|
2009-01-25 08:01:50 +01:00
|
|
|
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
|
2009-03-28 18:23:08 +01:00
|
|
|
u32 SaveFile(char * filepath, u32 datasize, int method, bool silent);
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
extern unsigned char * savebuffer;
|
2008-12-19 23:04:55 +01:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 08:58:23 +01:00
|
|
|
extern bool isMounted[];
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|