diff options
author | marha <marha@users.sourceforge.net> | 2009-07-25 11:41:54 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-07-25 11:41:54 +0000 |
commit | 1204cba5d6dbdfc8fc31cb7c4a4e467b9c55fc48 (patch) | |
tree | 54f50dac14b7b1e158ba7e18fc87d84455970910 /libxcb/src/xcb.h | |
parent | 12fa8ee5d6535841f016c03c07f1d5cfc54513b0 (diff) | |
parent | 1dad159fe09ac3a88b21b98544880e5ecc0e8d54 (diff) | |
download | vcxsrv-1204cba5d6dbdfc8fc31cb7c4a4e467b9c55fc48.tar.gz vcxsrv-1204cba5d6dbdfc8fc31cb7c4a4e467b9c55fc48.tar.bz2 vcxsrv-1204cba5d6dbdfc8fc31cb7c4a4e467b9c55fc48.zip |
svn merge file:///D:/svnrepos/vcxsrv/branches/released .
Diffstat (limited to 'libxcb/src/xcb.h')
-rw-r--r-- | libxcb/src/xcb.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/libxcb/src/xcb.h b/libxcb/src/xcb.h index 323a31fb2..70a44a59d 100644 --- a/libxcb/src/xcb.h +++ b/libxcb/src/xcb.h @@ -126,6 +126,23 @@ typedef struct { } xcb_generic_event_t; /** + * @brief GE event + * + * An event as sent by the XGE extension. The length field specifies the + * number of 4-byte blocks trailing the struct. + */ +typedef struct { + uint8_t response_type; /**< Type of the response */ + uint8_t pad0; /**< Padding */ + uint16_t sequence; /**< Sequence number */ + uint32_t length; + uint16_t event_type; + uint16_t pad1; + uint32_t pad[5]; /**< Padding */ + uint32_t full_sequence; /**< full sequence */ +} xcb_ge_event_t; + +/** * @brief Generic error. * * A generic error structure. @@ -134,7 +151,11 @@ typedef struct { uint8_t response_type; /**< Type of the response */ uint8_t error_code; /**< Error code */ uint16_t sequence; /**< Sequence number */ - uint32_t pad[7]; /**< Padding */ + uint32_t resource_id; /** < Resource ID for requests with side effects only */ + uint16_t minor_code; /** < Minor opcode of the failed request */ + uint8_t major_code; /** < Major opcode of the failed request */ + uint8_t pad0; + uint32_t pad[5]; /**< Padding */ uint32_t full_sequence; /**< full sequence */ } xcb_generic_error_t; |