From 8439f2dbc91611929ab8ea4636fbfe442d72738e Mon Sep 17 00:00:00 2001 From: Reiko Asakura Date: Thu, 11 Mar 2021 21:31:43 -0500 Subject: Conform syscall names to syslibtrace These names are guessed: sceUsbdRegisterCallbackForUser sceUsbdUnregisterCallbackForUser sceSblUsVerifyPupAdditionalSignForUser --- include/user/libsysmodule.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/user/libsysmodule.h') 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 } -- cgit v1.2.3