2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2010-01-27 22:20:37 +00:00
|
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
2008-08-13 22:44:59 +00:00
|
|
|
*
|
2008-08-06 01:09:59 +00:00
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007
|
2008-11-12 07:50:39 +00:00
|
|
|
* Michniewski 2008
|
2010-01-27 22:20:37 +00:00
|
|
|
* Tantric 2008-2010
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-08-07 05:19:17 +00:00
|
|
|
* fileop.h
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-12-18 18:36:30 +00:00
|
|
|
* File operations
|
2008-08-06 01:09:59 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-18 18:36:30 +00:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
|
|
|
|
2008-08-06 01:39:43 +00:00
|
|
|
#include <gccore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <fat.h>
|
|
|
|
#include <unistd.h>
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2010-07-17 06:34:02 +00:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 512)
|
2008-12-30 00:08:17 +00:00
|
|
|
|
2008-12-18 18:36:30 +00:00
|
|
|
void InitDeviceThread();
|
2009-05-06 17:28:06 +00:00
|
|
|
void ResumeDeviceThread();
|
|
|
|
void HaltDeviceThread();
|
2009-10-01 22:35:12 +00:00
|
|
|
void HaltParseThread();
|
2008-12-18 18:36:30 +00:00
|
|
|
void MountAllFAT();
|
2008-11-17 00:08:51 +00:00
|
|
|
void UnmountAllFAT();
|
2009-10-01 22:35:12 +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);
|
2011-03-24 01:02:33 +00:00
|
|
|
bool GetFileSize(int i);
|
2014-10-24 02:47:59 +00:00
|
|
|
void FindAndSelectLastLoadedFile();
|
2010-07-15 06:55:40 +00:00
|
|
|
int ParseDirectory(bool waitParse = false, bool filter = true);
|
2018-08-02 11:28:00 -06:00
|
|
|
bool CreateDirectory(char * path);
|
2008-12-30 00:08:17 +00:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2009-10-03 19:10:53 +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);
|
2008-08-06 01:09:59 +00:00
|
|
|
|
2010-06-29 07:48:17 +00:00
|
|
|
extern unsigned char *savebuffer;
|
2008-12-18 18:36:30 +00:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 08:02:04 +00:00
|
|
|
extern bool isMounted[];
|
2009-12-23 00:38:11 +00:00
|
|
|
extern int selectLoadedFile;
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#endif
|