mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2026-05-07 03:48:03 +02:00
Add majorCode, minorCode and resourceID fields to X generic error
This commit is contained in:
parent
e06955ed66
commit
f4c2794bf5
1 changed files with 5 additions and 1 deletions
|
|
@ -141,7 +141,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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue