Skip to main content

gdkx11/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![allow(clippy::upper_case_acronyms)]
5#![doc = include_str!("../README.md")]
6
7pub use gdk;
8pub use gdk_x11_sys as ffi;
9pub use gio;
10pub use glib;
11pub use x11;
12
13#[macro_use]
14mod rt;
15#[allow(unused_imports)]
16mod auto;
17mod x11_display;
18mod x11_screen;
19mod x11_visual;
20
21pub mod builders;
22
23pub use crate::auto::functions::*;
24pub use crate::auto::*;