snes9xgx/source/fileop.h

54 lines
1.4 KiB
C
Raw Normal View History

/****************************************************************************
2010-01-27 23:20:37 +01:00
* Snes9x Nintendo Wii/Gamecube Port
2008-08-14 00:44:59 +02:00
*
* softdev July 2006
* crunchy2 May 2007
2008-11-12 08:50:39 +01:00
* Michniewski 2008
2010-01-27 23:20:37 +01:00
* Tantric 2008-2010
*
2008-08-07 07:19:17 +02:00
* fileop.h
*
2008-12-18 19:36:30 +01:00
* File operations
****************************************************************************/
2008-12-18 19:36:30 +01: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>
#define SAVEBUFFERSIZE (1024 * 512)
2008-12-18 19:36:30 +01:00
void InitDeviceThread();
2009-05-06 19:28:06 +02:00
void ResumeDeviceThread();
void HaltDeviceThread();
2009-10-02 00:35:12 +02:00
void HaltParseThread();
2008-12-18 19:36:30 +01:00
void MountAllFAT();
void UnmountAllFAT();
2009-10-02 00:35:12 +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);
2011-03-24 02:02:33 +01:00
bool GetFileSize(int i);
2010-07-15 08:55:40 +02:00
int ParseDirectory(bool waitParse = false, bool filter = true);
void AllocSaveBuffer();
void FreeSaveBuffer();
2009-10-03 21:10:53 +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);
extern unsigned char *savebuffer;
2008-12-18 19:36:30 +01:00
extern FILE * file;
extern bool unmountRequired[];
extern bool isMounted[];
extern int selectLoadedFile;
#endif