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/appmgr.h | |
parent | Added SceUsbPspcm (diff) | |
download | vds-libraries-321e80f0bb9de02f88252289c5ee9a6e4c6ec006.tar.gz |
Added missing definitions for VitaShell
Diffstat (limited to '')
-rw-r--r-- | include/user/appmgr.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 44c0fc8..a6e09c6 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -315,6 +315,19 @@ int sceAppMgrLaunchAppByName2(const char *name, const char *param, SceAppMgrLaun SceUID sceAppMgrLaunchAppByName2ForShell(const char *name, const char *param, SceAppMgrLaunchAppOptParam *optParam); /** + * Mount game data + * + * @param[in] path - ux0:app/TITLEID + * @param[in] unk1 - Unknown, set 0 + * @param[in] unk2 - Unknown, set 0 + * @param[in] mount_point - Mountpoint to use + * + * @return 0 on success, < 0 on error. + * + */ +int sceAppMgrGameDataMount(const char *path, int unk1, int unk2, char *mount_point); + +/** * Mount application data * * @param[in] id - App data ID |