1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![allow(non_camel_case_types, non_snake_case)]

extern crate xcb;
extern crate libc;

pub mod ffi;

#[macro_use]
mod util;

#[cfg(feature = "icccm")]
pub mod icccm;

#[cfg(feature = "ewmh")]
pub mod ewmh;

#[cfg(feature = "image")]
pub mod image;

#[cfg(feature = "cursor")]
pub mod cursor;

#[cfg(feature = "keysyms")]
pub mod keysyms;

#[cfg(feature = "misc")]
pub mod misc;