diff options
author | TheOfficialFloW | 2018-01-26 10:14:32 +0100 |
---|---|---|
committer | TheOfficialFloW | 2018-01-26 10:14:32 +0100 |
commit | 321e80f0bb9de02f88252289c5ee9a6e4c6ec006 (patch) | |
tree | d8e1343f287d5faa34676306c4184533396ce918 /include/user/sysmodule.h | |
parent | Added SceUsbPspcm (diff) | |
download | vds-libraries-321e80f0bb9de02f88252289c5ee9a6e4c6ec006.tar.gz |
Added missing definitions for VitaShell
Diffstat (limited to '')
-rw-r--r-- | include/user/sysmodule.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/user/sysmodule.h b/include/user/sysmodule.h index 7811c7f..858b0a7 100644 --- a/include/user/sysmodule.h +++ b/include/user/sysmodule.h @@ -207,6 +207,18 @@ int sceSysmoduleIsLoadedInternal(SceSysmoduleInternalModuleId id); */ int sceSysmoduleLoadModuleInternalWithArg(SceSysmoduleInternalModuleId id, SceSize args, void *argp, void *unk); +/** + * Unload an internal module with custom arguments. + * + * @param[in] id - Module ID to check. + * @param[in] args - Size of passed arguments. + * @param[in] argp - Pointer to arguments to pass. + * @param[in] unk - Unknown value. + * + * @return 0 on success, <0 otherwise. + */ +int sceSysmoduleUnloadModuleInternalWithArg(SceSysmoduleInternalModuleId id, SceSize args, void *argp, void *unk); + #ifdef __cplusplus } #endif |