summaryrefslogtreecommitdiff
path: root/src/x11_xcb.c
blob: 3ddf403b6946940a1d7913db8c05d9cb878cb679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright (C) 2003,2006 Jamey Sharp, Josh Triplett
 * This file is licensed under the MIT license. See the file COPYING. */

#include "Xlibint.h"
#include "Xxcbint.h"

xcb_connection_t *XGetXCBConnection(Display *dpy)
{
	return dpy->xcb->connection;
}

void XSetEventQueueOwner(Display *dpy, enum XEventQueueOwner owner)
{
	dpy->xcb->event_owner = owner;
}