summaryrefslogtreecommitdiff
path: root/include/user/libsysmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/user/libsysmodule.h')
-rw-r--r--include/user/libsysmodule.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/user/libsysmodule.h b/include/user/libsysmodule.h
index e7d7dc2..ad2fda0 100644
--- a/include/user/libsysmodule.h
+++ b/include/user/libsysmodule.h
@@ -112,7 +112,8 @@ int sceSysmoduleIsLoadedInternal(SceUInt32 id);
*
* @return 0 on success, <0 otherwise.
*/
-int sceSysmoduleLoadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp, void *unk);
+#define sceSysmoduleLoadModuleInternalWithArg _sceSysmoduleLoadModuleInternalWithArg
+int _sceSysmoduleLoadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp, void *unk);
/**
* Unload an internal module with custom arguments.
@@ -124,7 +125,8 @@ int sceSysmoduleLoadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp
*
* @return 0 on success, <0 otherwise.
*/
-int sceSysmoduleUnloadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp, void *unk);
+#define sceSysmoduleUnloadModuleInternalWithArg _sceSysmoduleUnloadModuleInternalWithArg
+int _sceSysmoduleUnloadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp, void *unk);
#ifdef __cplusplus
}