2008-09-02 01:57:21 +00:00
|
|
|
/****************************************************************************
|
2009-07-22 02:05:49 +00:00
|
|
|
* FCE Ultra
|
2008-09-02 01:57:21 +00:00
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
2023-01-30 22:07:47 +01:00
|
|
|
* Tantric 2008-2023
|
2008-09-02 01:57:21 +00:00
|
|
|
*
|
2009-03-28 17:23:08 +00:00
|
|
|
* fileop.h
|
2008-09-02 01:57:21 +00:00
|
|
|
*
|
2008-12-30 00:05:57 +00:00
|
|
|
* File operations
|
2008-09-02 01:57:21 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-30 00:05:57 +00:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
2009-03-28 17:23:08 +00:00
|
|
|
|
2008-09-02 01:57:21 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2008-12-30 00:05:57 +00:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 512)
|
|
|
|
|
2008-12-19 22:04:55 +00:00
|
|
|
void InitDeviceThread();
|
2009-05-06 17:27:20 +00:00
|
|
|
void ResumeDeviceThread();
|
|
|
|
void HaltDeviceThread();
|
2009-10-01 22:21:25 +00:00
|
|
|
void HaltParseThread();
|
2008-12-19 22:04:55 +00:00
|
|
|
void MountAllFAT();
|
2008-11-17 00:09:31 +00:00
|
|
|
void UnmountAllFAT();
|
2009-10-01 22:21:25 +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);
|
2014-10-24 02:51:36 +00:00
|
|
|
void FindAndSelectLastLoadedFile();
|
2010-07-15 06:55:30 +00:00
|
|
|
int ParseDirectory(bool waitParse = false, bool filter = true);
|
2018-08-02 11:27:34 -06:00
|
|
|
bool CreateDirectory(char * path);
|
2008-12-30 00:05:57 +00:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2018-08-28 14:47:21 -06:00
|
|
|
size_t LoadFile(char * rbuffer, char *filepath, size_t length, size_t buffersize, bool silent);
|
2009-10-03 19:10:34 +00:00
|
|
|
size_t LoadFile(char * filepath, bool silent);
|
|
|
|
size_t LoadSzFile(char * filepath, unsigned char * rbuffer);
|
2019-01-05 17:14:22 -07:00
|
|
|
size_t LoadFont(char *filepath);
|
2019-01-06 10:28:50 -07:00
|
|
|
void LoadBgMusic();
|
2009-10-03 19:10:34 +00:00
|
|
|
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 01:57:21 +00:00
|
|
|
|
2018-08-27 09:25:53 -06:00
|
|
|
extern unsigned char *savebuffer;
|
2019-01-05 17:14:22 -07:00
|
|
|
extern u8 *ext_font_ttf;
|
2008-12-19 22:04:55 +00:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 07:58:23 +00:00
|
|
|
extern bool isMounted[];
|
2009-12-23 00:26:54 +00:00
|
|
|
extern int selectLoadedFile;
|
2008-09-02 01:57:21 +00:00
|
|
|
|
|
|
|
#endif
|