2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2010-01-27 23:20:37 +01:00
|
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
2008-08-14 00:44:59 +02:00
|
|
|
*
|
2022-01-09 17:41:38 +01:00
|
|
|
* Tantric 2008-2022
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-08-07 07:19:17 +02:00
|
|
|
* fileop.h
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-12-18 19:36:30 +01:00
|
|
|
* File operations
|
2008-08-06 03:09:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2008-12-18 19:36:30 +01:00
|
|
|
#ifndef _FILEOP_H_
|
|
|
|
#define _FILEOP_H_
|
|
|
|
|
2008-08-06 03:39:43 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2020-03-15 16:38:31 +01:00
|
|
|
#ifdef HW_RVL
|
2018-08-27 17:30:31 +02:00
|
|
|
#define SAVEBUFFERSIZE (1024 * 1024 * 2) // leave room for IPS/UPS files and large images
|
2020-03-15 16:38:31 +01:00
|
|
|
#else
|
|
|
|
#define SAVEBUFFERSIZE (1024 * 1024 * 1)
|
|
|
|
#endif
|
2008-12-30 01:08:17 +01:00
|
|
|
|
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();
|
2008-11-17 01:08:51 +01:00
|
|
|
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);
|
2014-10-24 04:47:59 +02:00
|
|
|
void FindAndSelectLastLoadedFile();
|
2010-07-15 08:55:40 +02:00
|
|
|
int ParseDirectory(bool waitParse = false, bool filter = true);
|
2018-08-02 19:28:00 +02:00
|
|
|
bool CreateDirectory(char * path);
|
2008-12-30 01:08:17 +01:00
|
|
|
void AllocSaveBuffer();
|
|
|
|
void FreeSaveBuffer();
|
2018-08-28 22:47:59 +02:00
|
|
|
size_t LoadFile(char * rbuffer, char *filepath, size_t length, size_t buffersize, bool silent);
|
2009-10-03 21:10:53 +02:00
|
|
|
size_t LoadFile(char * filepath, bool silent);
|
|
|
|
size_t LoadSzFile(char * filepath, unsigned char * rbuffer);
|
2019-01-06 01:07:07 +01:00
|
|
|
size_t LoadFont(char *filepath);
|
2019-01-06 18:17:20 +01:00
|
|
|
void LoadBgMusic();
|
2009-10-03 21:10:53 +02:00
|
|
|
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 03:09:59 +02:00
|
|
|
|
2010-06-29 09:48:17 +02:00
|
|
|
extern unsigned char *savebuffer;
|
2019-01-06 01:07:07 +01:00
|
|
|
extern u8 *ext_font_ttf;
|
2008-12-18 19:36:30 +01:00
|
|
|
extern FILE * file;
|
|
|
|
extern bool unmountRequired[];
|
2008-12-24 09:02:04 +01:00
|
|
|
extern bool isMounted[];
|
2009-12-23 01:38:11 +01:00
|
|
|
extern int selectLoadedFile;
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#endif
|