diff options
author | TheOfficialFloW | 2017-09-14 19:58:39 +0200 |
---|---|---|
committer | GitHub | 2017-09-14 19:58:39 +0200 |
commit | 20041d6c54964b921d5e51e867a5fbdd9bd6784b (patch) | |
tree | 4dbb5be6ad67ea830346b65370f0e059584c9d3d /include | |
parent | Use real names of SysEvent (diff) | |
download | vds-libraries-20041d6c54964b921d5e51e867a5fbdd9bd6784b.tar.gz |
Update appmgr.h
Diffstat (limited to '')
-rw-r--r-- | include/user/appmgr.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index b659731..9264ebc 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -59,6 +59,12 @@ typedef struct sceAppMgrLoadExecOptParam { #define SCE_APPMGR_MAX_APP_NAME_LENGTH (31) +// Get process ID by name (name of SceShell is NPXS19999) +int sceAppMgrGetIdByName(SceUID *pid, const char *name); + +// Get process name by ID +int sceAppMgrGetNameById(SceUID pid, char *name); + //! Destroy all other apps int sceAppMgrDestroyOtherApp(void); |