vbagx/source/fileop.h

50 lines
1.4 KiB
C
Raw Normal View History

/****************************************************************************
2008-09-17 02:27:55 +00:00
* Visual Boy Advance GX
*
2008-09-17 02:27:55 +00:00
* Tantric September 2008
*
* fileop.h
*
2008-12-18 18:58:30 +00:00
* File operations
****************************************************************************/
2008-12-18 18:58: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>
2010-07-20 06:46:28 +00:00
#define SAVEBUFFERSIZE (1024 * 1024 * 2)
2008-12-18 18:58:30 +00:00
void InitDeviceThread();
2009-05-06 17:28:50 +00:00
void ResumeDeviceThread();
void HaltDeviceThread();
2009-10-01 22:42:02 +00:00
void HaltParseThread();
2008-12-18 18:58:30 +00:00
void MountAllFAT();
void UnmountAllFAT();
2009-10-01 22:42:02 +00:00
bool FindDevice(char * filepath, int * device);
char * StripDevice(char * path);
bool ChangeInterface(int device, bool silent);
bool ChangeInterface(char * filepath, bool silent);
void CreateAppPath(char * origpath);
2010-07-15 06:55:48 +00:00
int ParseDirectory(bool waitParse = false, bool filter = true);
void AllocSaveBuffer();
void FreeSaveBuffer();
2009-10-03 19:09:59 +00:00
size_t LoadFile(char * rbuffer, char *filepath, size_t length, bool silent);
size_t LoadFile(char * filepath, bool silent);
size_t LoadSzFile(char * filepath, unsigned char * rbuffer);
size_t SaveFile(char * buffer, char *filepath, size_t datasize, bool silent);
size_t SaveFile(char * filepath, size_t datasize, bool silent);
extern unsigned char *savebuffer;
2008-12-18 18:58:30 +00:00
extern FILE * file;
extern bool unmountRequired[];
2008-12-24 07:52:35 +00:00
extern bool isMounted[];
extern int selectLoadedFile;
#endif