diff options
author | Reiko Asakura | 2020-11-21 13:56:33 -0500 |
---|---|---|
committer | Reiko Asakura | 2020-11-21 13:56:33 -0500 |
commit | 5f382a9b2b45ee2bb43ae2077cfc1575db97f592 (patch) | |
tree | 41f435340e44c9dcc0911e3f05b6f0170e4f0130 /include | |
parent | Add some comments for SceIniFileProcessor (diff) | |
download | vds-libraries-5f382a9b2b45ee2bb43ae2077cfc1575db97f592.tar.gz |
Add doc for sceAppMgrSendNotificationRequest
Diffstat (limited to 'include')
-rw-r--r-- | include/user/appmgr.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 866f3c1..7b796e1 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -536,9 +536,14 @@ int _sceAppMgrGetRawPathOfApp0ByAppIdForShell(int appId, char resolved_path[292] int sceAppMgrGetBudgetInfo(SceAppMgrBudgetInfo *info); /** - * Set unk to 0. + * Send TRC notification. Only visible if TRC notifications are enabled. + * + * @param[in] notification - pointer to struct containing notification text + * @param[in] blocking - Will wait for semaphore if set to true, otherwise will poll semaphore. + * + * @return 0 on success, < 0 on error. */ -int sceAppMgrSendNotificationRequest(SceAppMgrTrcNotification *notification, int unk); +int sceAppMgrSendNotificationRequest(SceAppMgrTrcNotification *notification, SceBool blocking); /** * Shared Framebuffer |