ezwin/lib.rs
1// #![feature(c_str_literals)]
2#![cfg_attr(target_os, windows)] // for now, it only supports Win32
3#![deny(unsafe_op_in_unsafe_fn)]
4
5#[cfg(all(feature = "rwh_05", not(feature = "rwh_06")))]
6pub use rwh_05 as raw_window_handle;
7#[cfg(all(feature = "rwh_06", not(feature = "rwh_05")))]
8pub use rwh_06 as raw_window_handle;
9
10pub mod debug;
11mod handle;
12pub mod prelude;
13pub mod utilities;
14pub mod window;