-
Notifications
You must be signed in to change notification settings - Fork 29
/
bigreq.c
107 lines (86 loc) · 3.22 KB
/
bigreq.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
* This file generated automatically from bigreq.xml by c_client.py.
* Edit at your peril.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <stddef.h> /* for offsetof() */
#include "xcbext.h"
#include "bigreq.h"
#define ALIGNOF(type) offsetof(struct { char dummy; type member; }, member)
xcb_extension_t xcb_big_requests_id = { "BIG-REQUESTS", 0 };
/*****************************************************************************
**
** xcb_big_requests_enable_cookie_t xcb_big_requests_enable
**
** @param xcb_connection_t *c
** @returns xcb_big_requests_enable_cookie_t
**
*****************************************************************************/
xcb_big_requests_enable_cookie_t
xcb_big_requests_enable (xcb_connection_t *c /**< */)
{
static const xcb_protocol_request_t xcb_req = {
/* count */ 2,
/* ext */ &xcb_big_requests_id,
/* opcode */ XCB_BIG_REQUESTS_ENABLE,
/* isvoid */ 0
};
struct iovec xcb_parts[4];
xcb_big_requests_enable_cookie_t xcb_ret;
xcb_big_requests_enable_request_t xcb_out;
xcb_parts[2].iov_base = (char *) &xcb_out;
xcb_parts[2].iov_len = sizeof(xcb_out);
xcb_parts[3].iov_base = 0;
xcb_parts[3].iov_len = -xcb_parts[2].iov_len & 3;
xcb_ret.sequence = xcb_send_request(c, XCB_REQUEST_CHECKED, xcb_parts + 2, &xcb_req);
return xcb_ret;
}
/*****************************************************************************
**
** xcb_big_requests_enable_cookie_t xcb_big_requests_enable_unchecked
**
** @param xcb_connection_t *c
** @returns xcb_big_requests_enable_cookie_t
**
*****************************************************************************/
xcb_big_requests_enable_cookie_t
xcb_big_requests_enable_unchecked (xcb_connection_t *c /**< */)
{
static const xcb_protocol_request_t xcb_req = {
/* count */ 2,
/* ext */ &xcb_big_requests_id,
/* opcode */ XCB_BIG_REQUESTS_ENABLE,
/* isvoid */ 0
};
struct iovec xcb_parts[4];
xcb_big_requests_enable_cookie_t xcb_ret;
xcb_big_requests_enable_request_t xcb_out;
xcb_parts[2].iov_base = (char *) &xcb_out;
xcb_parts[2].iov_len = sizeof(xcb_out);
xcb_parts[3].iov_base = 0;
xcb_parts[3].iov_len = -xcb_parts[2].iov_len & 3;
xcb_ret.sequence = xcb_send_request(c, 0, xcb_parts + 2, &xcb_req);
return xcb_ret;
}
/*****************************************************************************
**
** xcb_big_requests_enable_reply_t * xcb_big_requests_enable_reply
**
** @param xcb_connection_t *c
** @param xcb_big_requests_enable_cookie_t cookie
** @param xcb_generic_error_t **e
** @returns xcb_big_requests_enable_reply_t *
**
*****************************************************************************/
xcb_big_requests_enable_reply_t *
xcb_big_requests_enable_reply (xcb_connection_t *c /**< */,
xcb_big_requests_enable_cookie_t cookie /**< */,
xcb_generic_error_t **e /**< */)
{
return (xcb_big_requests_enable_reply_t *) xcb_wait_for_reply(c, cookie.sequence, e);
}