diff options
author | Reiko Asakura | 2021-03-11 21:31:43 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-11 21:31:43 -0500 |
commit | 8439f2dbc91611929ab8ea4636fbfe442d72738e (patch) | |
tree | 88f8ef9bf0d5e3aa523276500c7ac30b24d95aa8 /include/user/libsysmodule.h | |
parent | Run lint workflow on pull request (diff) | |
download | vds-libraries-8439f2dbc91611929ab8ea4636fbfe442d72738e.tar.gz |
Conform syscall names to syslibtrace
These names are guessed:
sceUsbdRegisterCallbackForUser
sceUsbdUnregisterCallbackForUser
sceSblUsVerifyPupAdditionalSignForUser
Diffstat (limited to 'include/user/libsysmodule.h')
-rw-r--r-- | include/user/libsysmodule.h | 6 |
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 } |