diff options
Diffstat (limited to '')
-rw-r--r-- | include/user/appmgr.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 2467c24..866f3c1 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -130,6 +130,11 @@ typedef struct SceAppMgrBudgetInfo { // 0x88 } SceAppMgrBudgetInfo; +typedef struct SceAppMgrTrcNotification { + int unk; //!< Set to 0 + char message[0x3C]; //!< Must be null-terminated +} SceAppMgrTrcNotification; + /** * Save data on savedata0: partition * @@ -531,6 +536,11 @@ int _sceAppMgrGetRawPathOfApp0ByAppIdForShell(int appId, char resolved_path[292] int sceAppMgrGetBudgetInfo(SceAppMgrBudgetInfo *info); /** + * Set unk to 0. + */ +int sceAppMgrSendNotificationRequest(SceAppMgrTrcNotification *notification, int unk); + +/** * Shared Framebuffer */ |