winit-sonoma-fix/src/platform/linux/mod.rs

10 lines
476 B
Rust
Raw Normal View History

#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
2015-04-24 17:51:23 +10:00
2015-09-24 17:11:59 +10:00
pub use self::api_dispatch::{Window, WindowProxy, MonitorId, get_available_monitors, get_primary_monitor};
pub use self::api_dispatch::{WaitEventsIterator, PollEventsIterator};
2016-01-08 02:01:18 +11:00
pub use self::api_dispatch::PlatformSpecificWindowBuilderAttributes;
2017-01-08 00:34:38 +11:00
pub use self::api_dispatch::Backend as UnixBackend;
pub use self::api_dispatch::BACKEND as UNIX_BACKEND;
2015-05-04 15:32:02 +10:00
2016-02-27 23:59:11 +11:00
mod api_dispatch;