1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +00:00

SpiceAgent: Implement sending clipboard data to the spice server

This commit is contained in:
Caoimhe 2023-05-13 17:53:48 +01:00 committed by Andreas Kling
parent 9f92e52464
commit 0d98920930
4 changed files with 94 additions and 0 deletions

View file

@ -53,6 +53,7 @@ enum class ClipboardDataType : u32 {
ErrorOr<String> clipboard_data_type_to_mime_type(ClipboardDataType type);
ErrorOr<ClipboardDataType> clipboard_data_type_from_raw_value(u32 value);
ErrorOr<ClipboardDataType> clipboard_data_type_from_mime_type(String const& mime_type);
class Message {
public: