mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-22 03:59:16 +01:00
18 lines
312 B
C
18 lines
312 B
C
#ifndef __FSHELPER_H_
|
|
#define __FSHELPER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <wiiu/types.h>
|
|
|
|
int FS_Helper_MountFS(void *pClient, void *pCmd, char **mount_path);
|
|
int FS_Helper_GetFile(void * pClient,void * pCmd,const char *, char **result);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __FSHELPER_H_
|