diff options
author | GrapheneCt | 2020-10-01 21:04:36 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-10-01 21:04:36 -0400 |
commit | d5e76a95a17d6a69c469e2049a422d4b6b645c15 (patch) | |
tree | 90df07620a3fe50915b76e7a64563dbbdcf25fe1 /include | |
parent | Fix param type error in kernel/iofilemgr/syscall.h (diff) | |
download | vds-libraries-d5e76a95a17d6a69c469e2049a422d4b6b645c15.tar.gz |
Add sceAppMgrSendNotificationRequest
Diffstat (limited to 'include')
-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 */ |