vbagx/source/ngc/fileop.h

38 lines
1012 B
C
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
2008-09-17 04:27:55 +02:00
* Tantric September 2008
*
* fileop.h
*
2008-12-18 19:58:30 +01:00
* File operations
****************************************************************************/
2008-12-18 19:58: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>
2008-12-18 19:58:30 +01:00
void InitDeviceThread();
void MountAllFAT();
void UnmountAllFAT();
2008-12-18 19:58:30 +01:00
bool ChangeInterface(int method, bool silent);
int ParseDirectory();
u32 LoadFile(char * rbuffer, char *filepath, u32 length, int method, bool silent);
u32 LoadFile(char filepath[], int method, bool silent);
u32 LoadSzFile(char * filepath, unsigned char * rbuffer);
u32 SaveFile(char * buffer, char *filepath, u32 datasize, int method, bool silent);
u32 SaveFile(char filepath[], u32 datasize, int method, bool silent);
2008-12-18 19:58:30 +01:00
extern char currdir[MAXPATHLEN];
extern FILE * file;
extern bool unmountRequired[];
extern lwp_t devicethread;
#endif