2015-08-30 06:54:17 +10:00
|
|
|
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"))]
|
2015-04-30 15:49:46 +10:00
|
|
|
|
2015-12-09 08:54:06 +11:00
|
|
|
pub use self::monitor::{MonitorId, get_available_monitors, get_primary_monitor};
|
|
|
|
pub use self::window::{PollEventsIterator, WaitEventsIterator, Window, WindowProxy};
|
2015-05-13 16:32:20 +10:00
|
|
|
|
2015-05-15 05:46:29 +10:00
|
|
|
extern crate wayland_kbd;
|
2015-08-16 22:12:21 +10:00
|
|
|
extern crate wayland_window;
|
2015-04-30 15:49:46 +10:00
|
|
|
|
2015-12-09 08:54:06 +11:00
|
|
|
mod monitor;
|
|
|
|
mod window;
|
|
|
|
|
2015-09-21 22:42:05 +10:00
|
|
|
#[inline]
|
2015-05-13 06:47:34 +10:00
|
|
|
pub fn is_available() -> bool {
|
2015-12-05 06:39:52 +11:00
|
|
|
false
|
2015-08-16 22:12:21 +10:00
|
|
|
}
|