mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-06 13:15:08 +01:00
14 lines
293 B
C
14 lines
293 B
C
|
#ifndef __FS_OS_UTILS_H_
|
||
|
#define __FS_OS_UTILS_H_
|
||
|
|
||
|
#include <dynamic_libs/os_types.h>
|
||
|
|
||
|
class FSOSUtils{
|
||
|
public:
|
||
|
|
||
|
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_
|