summaryrefslogtreecommitdiffstats
path: root/spice/qxl_windows.h
blob: bc2ceffb5b869036a46dff7e36e9d3d8a80bae02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _H_QXL_WINDOWS
#define _H_QXL_WINDOWS

#include <spice/types.h>

#include <spice/start-packed.h>

enum {
    QXL_ESCAPE_SET_CUSTOM_DISPLAY = 0x10001,
    QXL_ESCAPE_MONITOR_CONFIG
};

typedef struct SPICE_ATTR_PACKED QXLEscapeSetCustomDisplay {
    uint32_t xres;
    uint32_t yres;
    uint32_t bpp;
} QXLEscapeSetCustomDisplay;

#include <spice/end-packed.h>

#endif /* _H_QXL_WINDOWS */