2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
2008-09-17 04:27:55 +02:00
|
|
|
* Tantric September 2008
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* fileop.h
|
|
|
|
*
|
2008-12-18 19:58:30 +01:00
|
|
|
* File operations
|
2008-09-16 07:42:21 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-18 19:58:30 +01:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
|
|
|
|
2008-09-16 07:42: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:10:12 +01:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 1024 * 2)
|
|
|
|
|
2008-12-18 19:58:30 +01:00
|
|
|
void InitDeviceThread();
|
|
|
|
void MountAllFAT();
|
2008-11-17 01:09:38 +01:00
|
|
|
void UnmountAllFAT();
|
2008-12-18 19:58:30 +01:00
|
|
|
bool ChangeInterface(int method, bool silent);
|
2009-04-08 09:08:12 +02:00
|
|
|
int ParseDirectory(int method);
|
2008-12-30 01:10:12 +01:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2008-12-18 19:58:30 +01:00
|
|
|
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
|
2009-04-08 09:08:12 +02:00
|
|
|
u32 LoadFile(char * filepath, int method, bool silent);
|
2008-12-18 19:58:30 +01:00
|
|
|
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
|
|
|
|
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
|
2009-04-08 09:08:12 +02:00
|
|
|
u32 SaveFile(char * filepath, u32 datasize, int method, bool silent);
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-12-30 01:10:12 +01:00
|
|
|
extern unsigned char * savebuffer;
|
2008-12-18 19:58:30 +01:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 08:52:35 +01:00
|
|
|
extern bool isMounted[];
|
2008-12-19 00:21:51 +01:00
|
|
|
extern lwp_t devicethread;
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|