blob: 7a649abc1317edf77702a82736c448d9dc4ddd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))]
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, XNotSupported};
pub mod ffi;
mod events;
mod input;
mod monitor;
mod window;
mod xdisplay;
|