mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 20:45:09 +00:00

Remove superfluous includes from IPCCompiler's generated output and add include directives in IPC definitions where appropriate.
14 lines
415 B
Text
14 lines
415 B
Text
#include <LibGfx/ShareableBitmap.h>
|
|
|
|
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() => ()
|
|
}
|