fceugx/source/ngc/fileop.h

44 lines
1.1 KiB
C
Raw Normal View History

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
*
* File operations
2008-09-02 03:57:21 +02: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>
#define SAVEBUFFERSIZE (1024 * 512)
void InitDeviceThread();
void MountAllFAT();
void UnmountAllFAT();
bool ChangeInterface(int method, bool silent);
2009-03-28 18:23:08 +01:00
int ParseDirectory(int method);
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);
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
extern unsigned char * savebuffer;
extern FILE * file;
extern bool unmountRequired[];
2008-12-24 08:58:23 +01:00
extern bool isMounted[];
extern lwp_t devicethread;
2008-09-02 03:57:21 +02:00
#endif