mirror of
https://github.com/wiiu-env/homebrew_launcher.git
synced 2024-11-05 12:35:07 +01:00
24 lines
455 B
C
24 lines
455 B
C
#ifndef __FS_UTILS_H_
|
|
#define __FS_UTILS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gctypes.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_
|