diff options
Diffstat (limited to 'include/user')
-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 */ |