mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
944e5cfb35
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() => ()
|
|
}
|