mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2008-2009
|
|
*
|
|
* fileop.h
|
|
*
|
|
* File operations
|
|
****************************************************************************/
|
|
|
|
#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)
|
|
|
|
void InitDeviceThread();
|
|
void ResumeDeviceThread();
|
|
void HaltDeviceThread();
|
|
void MountAllFAT();
|
|
void UnmountAllFAT();
|
|
bool ChangeInterface(int method, bool silent);
|
|
int ParseDirectory(int method);
|
|
void AllocSaveBuffer();
|
|
void FreeSaveBuffer();
|
|
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
|
|
u32 LoadFile(char * filepath, int method, bool silent);
|
|
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
|
|
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
|
|
u32 SaveFile(char * filepath, u32 datasize, int method, bool silent);
|
|
|
|
extern unsigned char * savebuffer;
|
|
extern FILE * file;
|
|
extern bool unmountRequired[];
|
|
extern bool isMounted[];
|
|
|
|
#endif
|