1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-06 17:37:35 +00:00
serenity/Userland/Services/NotificationServer/NotificationServer.ipc

12 lines
378 B
Text

endpoint NotificationServer
{
show_notification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
update_notification_text([UTF8] String text, [UTF8] String title) => (bool still_showing)
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
is_showing() => (bool still_showing)
close_notification() => ()
}