diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-08 21:57:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-08 21:57:44 +0200 |
commit | cf3b58fbe8f836c13e44d6152d78960aff6089ef (patch) | |
tree | dcc7664f0004ee9c495f9d948cfb16d12f8a70bf /Services/NotificationServer/NotificationServer.ipc | |
parent | 042b1f68145ad3754fd98429b405c5c1a173d3fc (diff) | |
download | serenity-cf3b58fbe8f836c13e44d6152d78960aff6089ef.zip |
Services: Renamed from Servers
It didn't feel right to have a "DHCPClient" in a "Servers" directory.
Rename this to Services to better reflect the type of programs we'll
be putting in there.
Diffstat (limited to 'Services/NotificationServer/NotificationServer.ipc')
-rw-r--r-- | Services/NotificationServer/NotificationServer.ipc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Services/NotificationServer/NotificationServer.ipc b/Services/NotificationServer/NotificationServer.ipc new file mode 100644 index 0000000000..f1ac5e13df --- /dev/null +++ b/Services/NotificationServer/NotificationServer.ipc @@ -0,0 +1,7 @@ +endpoint NotificationServer = 95 +{ + // Basic protocol + Greet() => (i32 client_id) + + ShowNotification(String text, String title, Gfx::ShareableBitmap icon) => () +} |