From 2b88634671d1b745b1364e9cf4827e30a5ff2a6e Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Sat, 29 May 2010 19:33:54 +0100 Subject: x11: Partially convert to XCB. This commit mostly converts the X11 handling to XCB. There are still some uses of XLib to deal with the X11 session handling modules, however all client-side code should now be free of XLib and thus this should fix Bug #799 --- src/pulsecore/x11wrap.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/pulsecore/x11wrap.c') diff --git a/src/pulsecore/x11wrap.c b/src/pulsecore/x11wrap.c index 1960a12f..454507ae 100644 --- a/src/pulsecore/x11wrap.c +++ b/src/pulsecore/x11wrap.c @@ -259,6 +259,10 @@ Display *pa_x11_wrapper_get_display(pa_x11_wrapper *w) { return w->display; } +xcb_connection_t *pa_x11_wrapper_get_xcb_connection(pa_x11_wrapper *w) { + return XGetXCBConnection(pa_x11_wrapper_get_display(w)); +} + void pa_x11_wrapper_kill(pa_x11_wrapper *w) { pa_x11_client *c, *n; -- cgit