diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-01 11:26:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-01 11:32:00 +0100 |
commit | 1ce03f4f341efd3a2543572c5a0816b65789b0b0 (patch) | |
tree | 7d26af73beeddd225e0c3e5b756307639566ec5f /Userland/Services/NotificationServer/NotificationServer.ipc | |
parent | a5bbe3280d2a492f861cccb641b1b35b8b667b61 (diff) | |
download | serenity-1ce03f4f341efd3a2543572c5a0816b65789b0b0.zip |
LibIPC: Stop sending client ID to clients
The client ID is not useful to normal clients anymore, so stop telling
everyone what their ID is.
Diffstat (limited to 'Userland/Services/NotificationServer/NotificationServer.ipc')
-rw-r--r-- | Userland/Services/NotificationServer/NotificationServer.ipc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/NotificationServer/NotificationServer.ipc b/Userland/Services/NotificationServer/NotificationServer.ipc index e342ebf2d3..a4f7e64a6b 100644 --- a/Userland/Services/NotificationServer/NotificationServer.ipc +++ b/Userland/Services/NotificationServer/NotificationServer.ipc @@ -1,7 +1,7 @@ endpoint NotificationServer = 95 { // Basic protocol - Greet() => (i32 client_id) + Greet() => () ShowNotification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => () } |