mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-23 03:32:55 -04:00
16 lines
360 B
C
16 lines
360 B
C
/* 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;
|
|
}
|