summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCelesteBlue-dev2018-12-19 14:29:09 +0100
committerRémy F2018-12-19 14:29:09 +0100
commitca4219933fe8e6b0a6ac502fb579b103df94efb3 (patch)
tree218044cbc30fd29e6cdec7553e01e97619b30b35
parentUpdate SceNetPs (#376) (diff)
downloadvds-libraries-ca4219933fe8e6b0a6ac502fb579b103df94efb3.tar.gz
Add ksceKernelLaunchApp in processmgr.h (#375)
-rw-r--r--include/kernel/kernel/processmgr.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/kernel/kernel/processmgr.h b/include/kernel/kernel/processmgr.h
index c8db7e7..4578b35 100644
--- a/include/kernel/kernel/processmgr.h
+++ b/include/kernel/kernel/processmgr.h
@@ -26,6 +26,16 @@ void *sceKernelGetProcessLocalStorageAddr(int key);
int sceKernelGetProcessLocalStorageAddrForPid(SceUID pid, int key, void **out_addr, int create_if_doesnt_exist);
/**
+ * @brief Launch an application
+ * @param[in] titleid The TitleId of the app to open.
+ * @param[in] flags Some unknown flags.
+ * @param[in] path Path of the eboot.bin to launch.
+ * @param[in] unk Unknown.
+ * @return PID of the launched app on success, < 0 on error.
+ */
+SceUID sceKernelLaunchApp(char* titleid, uint32_t flags, char *path, uint32_t unk);
+
+/**
* @brief Resume a suspended process.
* @param[in] pid The process to resume.
* @return Zero on success, < 0 on error.