diff options
author | CelesteBlue-dev | 2018-12-19 14:29:09 +0100 |
---|---|---|
committer | Rémy F | 2018-12-19 14:29:09 +0100 |
commit | ca4219933fe8e6b0a6ac502fb579b103df94efb3 (patch) | |
tree | 218044cbc30fd29e6cdec7553e01e97619b30b35 | |
parent | Update SceNetPs (#376) (diff) | |
download | vds-libraries-ca4219933fe8e6b0a6ac502fb579b103df94efb3.tar.gz |
Add ksceKernelLaunchApp in processmgr.h (#375)
-rw-r--r-- | include/kernel/kernel/processmgr.h | 10 |
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. |