diff options
author | Davee | 2016-09-21 19:20:35 +0200 |
---|---|---|
committer | GitHub | 2016-09-21 19:20:35 +0200 |
commit | 3e1ac1674523ac2dd62aff1244b6918d2a3c3170 (patch) | |
tree | f20024cbe91c24029b0a154a36f4c35fb4be0f76 | |
parent | Merge pull request #49 from himanshugoel2797/patch-4 (diff) | |
parent | add return value for sceAppMgrGetAppParam (diff) | |
download | vds-libraries-3e1ac1674523ac2dd62aff1244b6918d2a3c3170.tar.gz |
Merge pull request #57 from SMOKE5/master
add sceAppMgrGetAppParam
-rw-r--r-- | include/user/appmgr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 5aa748e..d14fe06 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -72,6 +72,11 @@ int _sceAppMgrGetAppState(SceAppMgrAppState *appState, uint32_t len, uint32_t ve int sceAppMgrReceiveSystemEvent(SceAppMgrSystemEvent *systemEvent); +//! Copies app param to an array +//! App param example: type=LAUNCH_APP_BY_URI&uri=psgm:play?titleid=NPXS10031 +//! Returns 0 for success +int sceAppMgrGetAppParam(char *param); + //! Obtains the BGM port, even when it is not in front int sceAppMgrAcquireBgmPort(void); |