Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:14:32

0001 /* Copyright (C) 2003-2006 Jamey Sharp, Josh Triplett
0002  * This file is licensed under the MIT license. See the file COPYING. */
0003 
0004 #ifndef _X11_XLIB_XCB_H_
0005 #define _X11_XLIB_XCB_H_
0006 
0007 #include <xcb/xcb.h>
0008 #include <X11/Xlib.h>
0009 #include <X11/Xfuncproto.h>
0010 
0011 _XFUNCPROTOBEGIN
0012 
0013 xcb_connection_t *XGetXCBConnection(Display *dpy);
0014 
0015 enum XEventQueueOwner { XlibOwnsEventQueue = 0, XCBOwnsEventQueue };
0016 void XSetEventQueueOwner(Display *dpy, enum XEventQueueOwner owner);
0017 
0018 _XFUNCPROTOEND
0019 
0020 #endif /* _X11_XLIB_XCB_H_ */