summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2010-08-08 13:06:57 +0300
committerYonit Halperin <yhalperi@redhat.com>2010-08-24 10:36:05 +0300
commit5833dc9760eaa9d9ae9ed46aeae5481f4052b5d5 (patch)
treed04181fbc63367f6feca26671dcc590acce07def /common
parent8eb3e2e816714100d82db1f384a2c9c3d5046f10 (diff)
Controlling Windows display settings (e.g., wallpaper, UI effects and font smoothing)
The configuration is received from Spice client. The main usage of this option is for disabling display features in order to accelerate Spice performance over limited network connections.
Diffstat (limited to 'common')
-rw-r--r--common/vdcommon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/vdcommon.h b/common/vdcommon.h
index f097de4..1097720 100644
--- a/common/vdcommon.h
+++ b/common/vdcommon.h
@@ -33,12 +33,14 @@ typedef CRITICAL_SECTION mutex_t;
#define VD_SERVICE_PIPE_NAME TEXT("\\\\.\\pipe\\vdservicepipe")
#define VD_MESSAGE_HEADER_SIZE (sizeof(VDPipeMessage) + sizeof(VDAgentMessage))
#define VD_PIPE_BUF_SIZE (1024 * 1024)
+#define VD_AGENT_REGISTRY_KEY "SOFTWARE\\Red Hat\\Spice\\vdagent\\"
enum {
VD_AGENT_COMMAND,
VD_AGENT_RESET,
VD_AGENT_RESET_ACK,
VD_AGENT_QUIT,
+ VD_AGENT_SESSION_LOGON,
};
typedef __declspec (align(1)) struct VDPipeMessage {