diff options
author | GrapheneCt | 2020-11-21 13:59:54 -0500 |
---|---|---|
committer | Reiko Asakura | 2020-11-21 13:59:54 -0500 |
commit | 863de5cd20dcab0c758b1c158c84cb691765a2e4 (patch) | |
tree | 2c0fd4008642ea280107fae5a14ea24357a025e9 /include/user/appmgr.h | |
parent | Add doc for sceAppMgrSendNotificationRequest (diff) | |
download | vds-libraries-863de5cd20dcab0c758b1c158c84cb691765a2e4.tar.gz |
Add prototype for sceAppMgrGrowMemory{,3}
Diffstat (limited to '')
-rw-r--r-- | include/user/appmgr.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 7b796e1..5815ae1 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -546,6 +546,22 @@ int sceAppMgrGetBudgetInfo(SceAppMgrBudgetInfo *info); int sceAppMgrSendNotificationRequest(SceAppMgrTrcNotification *notification, SceBool blocking); /** + * Grows main memory budget of system mode app. + * + * @param[in] size - size to grow to + * @param[in] unk - set to 1 + */ +int sceAppMgrGrowMemory(SceSize size, int unk); + +/** + * Grows main memory budget of system mode app. + * + * @param[in] size - size to grow to + * @param[in] unk - set to 1 + */ +int sceAppMgrGrowMemory3(SceSize size, int unk); + +/** * Shared Framebuffer */ |