1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Rust transpilation of the `xproto` library.
//!
//! This library exposes types and values required
//! to communicate with, or as, an X11 server.
//!
//! The `xproto` library does not include any logic,
//! only data structures and constants.

// Allow C style.
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]

mod bindings;

pub use self::bindings::*;