[Spice-devel] [PATCH spice-protocol 2/2] agent: Add macro for clearing capability
Pavel Grunt
pgrunt at redhat.com
Tue Feb 28 13:58:59 UTC 2017
Related:
https://bugzilla.redhat.com/show_bug.cgi?id=1373725
---
spice/vd_agent.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/spice/vd_agent.h b/spice/vd_agent.h
index ac22498..3b1f183 100644
--- a/spice/vd_agent.h
+++ b/spice/vd_agent.h
@@ -269,6 +269,9 @@ typedef struct SPICE_ATTR_PACKED VDAgentAnnounceCapabilities {
#define VD_AGENT_SET_CAPABILITY(caps, index) \
{ (caps)[(index) / 32] |= (1 << ((index) % 32)); }
+#define VD_AGENT_CLEAR_CAPABILITY(caps, index) \
+ { (caps)[(index) / 32] &= ~(1 << ((index) % 32)); }
+
#include <spice/end-packed.h>
#endif /* _H_VD_AGENT */
--
2.11.1
More information about the Spice-devel
mailing list