[client] spice: implement channel caps and initial clipboard support

This commit is contained in:
Geoffrey McRae
2019-02-22 07:40:43 +11:00
parent 00e07c0384
commit 108369414e
2 changed files with 61 additions and 14 deletions

View File

@@ -138,4 +138,9 @@ SpiceMsgcMouseRelease;
#define COMMON_SET_CAPABILITY(caps, index) \
{ (caps)[(index) / 32] |= (1 << ((index) % 32)); }
#define MAIN_CAPS_BYTES (((SPICE_MAIN_CAP_SEAMLESS_MIGRATE + 32) / 8) & ~3)
#define MAIN_SET_CAPABILITY(caps, index) \
{ (caps)[(index) / 32] |= (1 << ((index) % 32)); }
#pragma pack(pop)