x11/
lib.rs

1// x11-rs: Rust bindings for X11 libraries
2// The X11 libraries are available under the MIT license.
3// These bindings are public domain.
4
5#![allow(non_camel_case_types)]
6#![allow(non_snake_case)]
7#![allow(non_upper_case_globals)]
8#![allow(improper_ctypes)]
9#![allow(deref_nullptr)]
10#![allow(clippy::missing_safety_doc)]
11
12extern crate libc;
13
14#[macro_use]
15mod link;
16mod internal;
17
18#[macro_use]
19pub mod xlib;
20
21pub mod dpms;
22pub mod glx;
23pub mod keysym;
24pub mod sync;
25pub mod xcursor;
26pub mod xf86vmode;
27pub mod xfixes;
28pub mod xft;
29pub mod xinerama;
30pub mod xinput;
31pub mod xinput2;
32pub mod xlib_xcb;
33pub mod xmd;
34pub mod xmu;
35pub mod xpresent;
36pub mod xrandr;
37pub mod xrecord;
38pub mod xrender;
39pub mod xshm;
40pub mod xss;
41pub mod xt;
42pub mod xtest;