diff options
author | TheOfficialFloW | 2016-01-22 18:14:40 +0100 |
---|---|---|
committer | TheOfficialFloW | 2016-01-22 18:14:40 +0100 |
commit | 2ed137db1eb6c6c02b74cffceedf6059999db8a8 (patch) | |
tree | f5e09928bf9ff2fdc51a4943b58447eb18e04f63 | |
parent | Added new NIDs (diff) | |
download | vds-libraries-2ed137db1eb6c6c02b74cffceedf6059999db8a8.tar.gz |
Added new NIDs
-rw-r--r-- | include/user/appmgr.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index e616b1e..f7ba83b 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -85,6 +85,36 @@ typedef struct sceAppMgrLoadExecOptParam { int sceAppMgrLoadExec(const char *appPath, char * const argv[], const SceAppMgrExecOptParam *optParam); +int sceAppMgrLaunchAppByUri(int flags, char *uri); + +//! id: 100 (photo0), 101 (friends), 102 (messages), 103 (near), 105 (music), 108 (calendar) +int sceAppMgrAppDataMount(int id, char *mount_point); + +//! id: 106 (ad), 107 (ad) +int sceAppMgrAppDataMountById(int id, char *titleid, char *mount_point); + +//! param: 12 (titleid) +int sceAppMgrAppParamGetString(int pid, int param, char *string, int length); + +int sceAppMgrConvertVs0UserDrivePath(char *path, char *mount_point, int unk); + +//! dev: ux0: +int sceAppMgrGetDevInfo(char *dev, uint64_t *max_size, uint64_t *free_size); + +int sceAppMgrGetRawPath(char *path, char *mount_point, char *unk); + +//! id: 400 (ad), 401 (ad), 402 (ad) +int sceAppMgrMmsMount(int id, char *mount_point); + +//! ms +int sceAppMgrPspSaveDataRootMount(char *mount_point); + +//! id: 200 (td), 201 (td), 203 (td), 204 (td), 206 (td) +int sceAppMgrWorkDirMount(int id, char *mount_point); + +//! id: 205 (cache0), 207 (td) +int sceAppMgrWorkDirMountById(int id, char *titleid, char *mount_point); + #ifdef __cplusplus } #endif |