summaryrefslogtreecommitdiff
path: root/include/user/sysmodule.h
diff options
context:
space:
mode:
authorTheOfficialFloW2018-01-26 10:14:32 +0100
committerTheOfficialFloW2018-01-26 10:14:32 +0100
commit321e80f0bb9de02f88252289c5ee9a6e4c6ec006 (patch)
treed8e1343f287d5faa34676306c4184533396ce918 /include/user/sysmodule.h
parentAdded SceUsbPspcm (diff)
downloadvds-libraries-321e80f0bb9de02f88252289c5ee9a6e4c6ec006.tar.gz
Added missing definitions for VitaShell
Diffstat (limited to '')
-rw-r--r--include/user/sysmodule.h12
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