winsafe 0.0.28

Windows API and GUI in safe, idiomatic Rust.
Documentation
//! All macros used throughout the library are declared in this module, which is
//! declared before everything in lib.rs. This is necessary because macros must
//! exist before a module declaration to be used inside of the module.

#![allow(unused_imports)]

mod com;
mod consts;
mod ffis;
mod gui_events;
mod gui_objs;
mod handles;
mod messages;
mod pub_macros;
mod structs;

pub(crate) use com::*;
pub(crate) use consts::*;
pub(crate) use ffis::*;
pub(crate) use gui_events::*;
pub(crate) use gui_objs::*;
pub(crate) use handles::*;
pub(crate) use messages::*;
pub use pub_macros::*;
pub(crate) use structs::*;