ladybird/Userland/Services/NotificationServer/NotificationServer.ipc
Gunnar Beutner 9e22e9ce88 Userland: Use snake case names in .ipc files
This updates all .ipc files to have snake case names for IPC methods.
2021-05-03 21:14:40 +02:00

16 lines
419 B
Plaintext

endpoint NotificationServer
{
// Basic protocol
greet() => ()
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() => ()
}