mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
24 lines
458 B
C
24 lines
458 B
C
#ifndef __FS_UTILS_H_
|
|
#define __FS_UTILS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <wiiu/types.h>
|
|
|
|
int MountFS(void *pClient, void *pCmd, char **mount_path);
|
|
int UmountFS(void *pClient, void *pCmd, const char *mountPath);
|
|
|
|
int LoadFileToMem(const char *filepath, u8 **inbuffer, u32 *size);
|
|
|
|
//! todo: C++ class
|
|
int CreateSubfolder(const char * fullpath);
|
|
int CheckFile(const char * filepath);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __FS_UTILS_H_
|