diff options
author | xyzz | 2016-09-10 03:40:49 +0200 |
---|---|---|
committer | GitHub | 2016-09-10 03:40:49 +0200 |
commit | 5f3598a8e6789cb6bbc8f515a71b191e7764a11b (patch) | |
tree | 88101de68b51b3bd0202ea94134e49220a829739 /include/user | |
parent | Merge pull request #44 from frangarcj/master (diff) | |
parent | Added comment describing the 'name' parameter (diff) | |
download | vds-libraries-5f3598a8e6789cb6bbc8f515a71b191e7764a11b.tar.gz |
Merge pull request #46 from himanshugoel2797/patch-3
Add function signature for _sceAppMgrDestroyAppByName
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/appmgr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 516462f..5aa748e 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -59,6 +59,9 @@ typedef struct SceAppMgrExecOptParam SceAppMgrExecOptParam; // Missing struct #define SCE_APPMGR_MAX_APP_NAME_LENGTH (31) +//! name: The Title ID of the application +int _sceAppMgrDestroyAppByName(char *name); + int _sceAppMgrGetAppState(SceAppMgrAppState *appState, uint32_t len, uint32_t version); /** @@ -88,6 +91,7 @@ int sceAppMgrLoadExec(const char *appPath, char * const argv[], //! flags: 0x20000 to launch, otherwise it just goes to the livearea page int sceAppMgrLaunchAppByUri(int flags, char *uri); +//! name: The Title ID of the application int sceAppMgrLaunchAppByName2(char *name); //! id: 100 (photo0), 101 (friends), 102 (messages), 103 (near), 105 (music), 108 (calendar) |