diff options
author | Princess of Sleeping | 2020-06-26 21:32:02 +0900 |
---|---|---|
committer | GitHub | 2020-06-26 21:32:02 +0900 |
commit | 55725cf5ec61ac9b3685bc4952095475da5c9178 (patch) | |
tree | 54ea391c4683431e073e5c75efa1e30f0c369f93 /include/kernel/appmgr.h | |
parent | Fix modulemgr two function arg name and document (diff) | |
download | vds-libraries-55725cf5ec61ac9b3685bc4952095475da5c9178.tar.gz |
Fix many args (#451)
Changes document and variable types
Diffstat (limited to 'include/kernel/appmgr.h')
-rw-r--r-- | include/kernel/appmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kernel/appmgr.h b/include/kernel/appmgr.h index 758c339..2f8e91a 100644 --- a/include/kernel/appmgr.h +++ b/include/kernel/appmgr.h @@ -16,7 +16,7 @@ int sceAppMgrKillProcess(SceUID pid); typedef struct { - size_t size; + SceSize size; unsigned int unk_4; //<! set to 0x80000000 to break on launch unsigned int unk_8; unsigned int unk_C; @@ -43,7 +43,7 @@ typedef struct * * @return pid on success, else < 0. */ -int sceAppMgrLaunchAppByPath(const char *path, const char *args, unsigned arg_size, unsigned int type, const SceAppMgrLaunchParam *param, void *unk); +int sceAppMgrLaunchAppByPath(const char *path, const char *args, SceSize arg_size, unsigned int type, const SceAppMgrLaunchParam *param, void *unk); #ifdef __cplusplus } |