libutils/source/fs/FSOSUtils.h

14 lines
290 B
C
Raw Normal View History

2017-10-29 09:24:06 +01:00
#ifndef __FS_OS_UTILS_H_
#define __FS_OS_UTILS_H_
#include <dynamic_libs/os_types.h>
2018-03-11 16:44:04 +01:00
class FSOSUtils {
public:
2017-10-29 09:24:06 +01:00
static s32 MountFS(void *pClient, void *pCmd, char **mount_path);
static s32 UmountFS(void *pClient, void *pCmd, const char *mountPath);
};
#endif // __FS_OS_UTILS_H_