Quit using "-include config.h": use #ifdef HAVE_CONFIG_H etc. like everyone else.
[free-sw/xcb/libxcb] / src / xcbext.h
1 /*
2  * Copyright (C) 2001-2004 Bart Massey and Jamey Sharp.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  * 
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  * 
22  * Except as contained in this notice, the names of the authors or their
23  * institutions shall not be used in advertising or otherwise to promote the
24  * sale, use or other dealings in this Software without prior written
25  * authorization from the authors.
26  */
27
28 #ifndef __XCBEXT_H
29 #define __XCBEXT_H
30
31 #include "xcb.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 /* xcb_ext.c */
38
39 struct XCBExtension {
40     const char *name;
41     int global_id;
42 };
43
44
45 /* xcb_out.c */
46
47 typedef struct {
48     size_t count;
49     XCBExtension *ext;
50     CARD8 opcode;
51     BOOL isvoid;
52 } XCBProtocolRequest;
53
54 int XCBSendRequest(XCBConnection *c, unsigned int *sequence, struct iovec *vector, const XCBProtocolRequest *request);
55
56
57 /* xcb_in.c */
58
59 void *XCBWaitForReply(XCBConnection *c, unsigned int request, XCBGenericError **e);
60
61
62 /* xcb_xid.c */
63
64 CARD32 XCBGenerateID(XCBConnection *c);
65
66
67 /* xcb_util.c */
68
69 int XCBPopcount(CARD32 mask);
70
71 #ifdef __cplusplus
72 }
73 #endif
74
75 #endif