RetroArch
fs_utils.h
Go to the documentation of this file.
1 #ifndef __FS_UTILS_H_
2 #define __FS_UTILS_H_
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include <wiiu/types.h>
9 
10 int MountFS(void *pClient, void *pCmd, char **mount_path);
11 int UmountFS(void *pClient, void *pCmd, const char *mountPath);
12 
13 int LoadFileToMem(const char *filepath, u8 **inbuffer, u32 *size);
14 
15 /* TODO/FIXME: C++ class */
16 int CreateSubfolder(const char * fullpath);
17 int CheckFile(const char * filepath);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* __FS_UTILS_H_ */
int MountFS(void *pClient, void *pCmd, char **mount_path)
Definition: fs_utils.c:32
int CreateSubfolder(const char *fullpath)
Definition: fs_utils.c:156
GLsizeiptr size
Definition: glext.h:6559
int UmountFS(void *pClient, void *pCmd, const char *mountPath)
Definition: fs_utils.c:70
int LoadFileToMem(const char *filepath, u8 **inbuffer, u32 *size)
Definition: fs_utils.c:75
static char * filepath
Definition: mpv-libretro.c:60
int CheckFile(const char *filepath)
Definition: fs_utils.c:131
uint8_t u8
8bit unsigned integer
Definition: gctypes.h:17
uint32_t u32
32bit unsigned integer
Definition: gctypes.h:19