mirror of
https://github.com/libretro/RetroArch
synced 2024-12-26 21:29:08 +00:00
17 lines
226 B
C
17 lines
226 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __FS_UTILS_H_ */
|