blob: e900583c74269862b874fd99a5992811c6b41b93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![cfg(all(target_os = "linux", feature = "window"))]
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};
pub use self::window::{Window, XWindow, PollEventsIterator, WaitEventsIterator, Context, WindowProxy};
pub use self::xdisplay::XConnection;
pub mod ffi;
mod events;
mod monitor;
mod window;
mod xdisplay;
|