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