1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 04:35:06 +00:00
serenity/Userland/Services/Clipboard/ClipboardServer.ipc
Andreas Kling 1ce03f4f34 LibIPC: Stop sending client ID to clients
The client ID is not useful to normal clients anymore, so stop telling
everyone what their ID is.
2021-02-01 11:32:00 +01:00

7 lines
266 B
Text

endpoint ClipboardServer = 802
{
Greet() => ()
GetClipboardData() => (Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata)
SetClipboardData(Core::AnonymousBuffer data, [UTF8] String mime_type, IPC::Dictionary metadata) => ()
}