Merge pull request #35 from davll/fix-xcb-x11

Fix xcb_window_t and X11's Window type definition
This commit is contained in:
Maik Klein 2017-10-14 12:09:25 +02:00 committed by GitHub
commit 9ad90fab6a

View file

@ -215,10 +215,10 @@ pub mod types {
pub type c_float = libc::c_float;
pub type int32_t = libc::int32_t;
pub type Display = *const c_void;
pub type Window = *const c_void;
pub type Window = libc::c_ulong;
pub type VisualID = *const c_void;
pub type xcb_connection_t = *const c_void;
pub type xcb_window_t = *const c_void;
pub type xcb_window_t = u32;
pub type xcb_visualid_t = *const c_void;
pub type MirConnection = *const c_void;
pub type MirSurface = *const c_void;