fceugx/source/fileop.h

51 lines
1.3 KiB
C
Raw Normal View History

2008-09-02 03:57:21 +02:00
/****************************************************************************
2009-07-22 04:05:49 +02:00
* FCE Ultra
2008-09-02 03:57:21 +02:00
* 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();
2009-05-06 19:27:20 +02:00
void ResumeDeviceThread();
void HaltDeviceThread();
2009-10-02 00:21:25 +02:00
void HaltParseThread();
void MountAllFAT();
void UnmountAllFAT();
2009-10-02 00:21:25 +02: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);
int ParseDirectory(bool waitParse = false);
void AllocSaveBuffer();
void FreeSaveBuffer();
2009-10-03 21:10:34 +02: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);
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 int selectLoadedFile;
2008-09-02 03:57:21 +02:00
#endif