1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:18:11 +00:00
serenity/Userland/Services/Clipboard/ClipboardServer.ipc
Ben Wiederhake 0ee5a4e308 Clipboard: Avoid unnecessary IPC::Dictionary wrapper
We already have and use HashMap<DeprecatedString, DeprecatedString>
nearly everywhere, which is equivalent.
2023-05-21 07:53:45 +02:00

7 lines
354 B
Text

#include <LibCore/AnonymousBuffer.h>
endpoint ClipboardServer
{
get_clipboard_data() => (Core::AnonymousBuffer data, [UTF8] DeprecatedString mime_type, HashMap<DeprecatedString,DeprecatedString> metadata)
set_clipboard_data(Core::AnonymousBuffer data, [UTF8] DeprecatedString mime_type, HashMap<DeprecatedString,DeprecatedString> metadata) =|
}