<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Addresses: <a class="moz-txt-link-freetext" href="https://bugzilla.redhat.com/show_bug.cgi?id=1202419">https://bugzilla.redhat.com/show_bug.cgi?id=1202419</a><br>
<br>
A monitors_config message needs to be sent from the guest to the
client<br>
when monitors are ordered with the "Set Resolution" applet.<br>
---<br>
I think it is best to keep the Windows driver escape structures
together in the qxl_windows.h file<br>
Change from v1:<br>
* removed unused structure members<br>
--- <br>
spice/qxl_windows.h | 8 ++++++++<br>
1 file changed, 8 insertions(+)<br>
<br>
diff --git a/spice/qxl_windows.h b/spice/qxl_windows.h<br>
index d1df684..b4d5a58 100644<br>
--- a/spice/qxl_windows.h<br>
+++ b/spice/qxl_windows.h<br>
@@ -7,6 +7,7 @@<br>
<br>
enum {<br>
QXL_ESCAPE_SET_CUSTOM_DISPLAY = 0x10001,<br>
+ QXL_ESCAPE_MONITOR_CONFIG<br>
};<br>
<br>
typedef struct SPICE_ATTR_PACKED QXLEscapeSetCustomDisplay {<br>
@@ -15,6 +16,13 @@ typedef struct SPICE_ATTR_PACKED
QXLEscapeSetCustomDisplay {<br>
uint32_t bpp;<br>
} QXLEscapeSetCustomDisplay;<br>
<br>
+typedef struct SPICE_ATTR_PACKED QXLEscapeMonitorConfig {<br>
+ uint32_t xpos;<br>
+ uint32_t ypos;<br>
+ uint32_t xres;<br>
+ uint32_t yres;<br>
+} QXLEscapeMonitorConfig;<br>
+<br>
#include <spice end-packed.h=""><br>
<br>
#endif /* _H_QXL_WINDOWS */<br>
-- <br>
1.9.5.msysgit.0<br>
<br>
</spice>
</body>
</html>