ezwin 2.15.1

Easy, minimal Win32 window creation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// #![feature(c_str_literals)]
#![cfg_attr(target_os, windows)] // for now, it only supports Win32
#![deny(unsafe_op_in_unsafe_fn)]

#[cfg(all(feature = "rwh_05", not(feature = "rwh_06")))]
pub use rwh_05 as raw_window_handle;
#[cfg(all(feature = "rwh_06", not(feature = "rwh_05")))]
pub use rwh_06 as raw_window_handle;

pub mod debug;
mod handle;
pub mod prelude;
pub mod utilities;
pub mod window;