summaryrefslogtreecommitdiff
path: root/include/user
diff options
context:
space:
mode:
authorGrapheneCt2020-10-01 21:04:36 -0400
committerReiko Asakura2020-10-01 21:04:36 -0400
commitd5e76a95a17d6a69c469e2049a422d4b6b645c15 (patch)
tree90df07620a3fe50915b76e7a64563dbbdcf25fe1 /include/user
parentFix param type error in kernel/iofilemgr/syscall.h (diff)
downloadvds-libraries-d5e76a95a17d6a69c469e2049a422d4b6b645c15.tar.gz
Add sceAppMgrSendNotificationRequest
Diffstat (limited to 'include/user')
-rw-r--r--include/user/appmgr.h10
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
*/