mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 18:15:09 +00:00

A clipping now consists of three things: - The raw clip data - A MIME type - A key-value map (String, String) for anything you like
7 lines
281 B
Text
7 lines
281 B
Text
endpoint ClipboardServer = 802
|
|
{
|
|
Greet() => (i32 client_id)
|
|
|
|
GetClipboardData() => (i32 shbuf_id, i32 data_size, [UTF8] String mime_type, IPC::Dictionary metadata)
|
|
SetClipboardData(i32 shbuf_id, i32 data_size, [UTF8] String mime_type, IPC::Dictionary metadata) => ()
|
|
}
|