mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-03-22 01:35:55 -05:00
14 lines
283 B
C++
14 lines
283 B
C++
#ifndef __FS_OS_UTILS_H_
|
|
#define __FS_OS_UTILS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
class FSOSUtils {
|
|
public:
|
|
|
|
static int32_t MountFS(void *pClient, void *pCmd, char **mount_path);
|
|
static int32_t UmountFS(void *pClient, void *pCmd, const char *mountPath);
|
|
};
|
|
|
|
#endif // __FS_OS_UTILS_H_
|