Merge pull request #35 from davll/fix-xcb-x11
Fix xcb_window_t and X11's Window type definition
This commit is contained in:
commit
9ad90fab6a
|
@ -215,10 +215,10 @@ pub mod types {
|
||||||
pub type c_float = libc::c_float;
|
pub type c_float = libc::c_float;
|
||||||
pub type int32_t = libc::int32_t;
|
pub type int32_t = libc::int32_t;
|
||||||
pub type Display = *const c_void;
|
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 VisualID = *const c_void;
|
||||||
pub type xcb_connection_t = *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 xcb_visualid_t = *const c_void;
|
||||||
pub type MirConnection = *const c_void;
|
pub type MirConnection = *const c_void;
|
||||||
pub type MirSurface = *const c_void;
|
pub type MirSurface = *const c_void;
|
||||||
|
|
Loading…
Reference in a new issue