1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 07:38:10 +00:00
serenity/Userland/Services/NotificationServer/NotificationServer.ipc
2021-04-25 11:24:12 +02:00

15 lines
417 B
Text

endpoint NotificationServer = 95
{
// Basic protocol
Greet() => ()
ShowNotification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
UpdateNotificationText([UTF8] String text, [UTF8] String title) => (bool still_showing)
UpdateNotificationIcon(Gfx::ShareableBitmap icon) => (bool still_showing)
IsShowing() => (bool still_showing)
CloseNotification() => ()
}