//! # Min32
//!
//! This is a minimal library that can be used to help create no-std executables for win32 targets.
//!
//! It implements `GlobalAlloc`, `#[panic_handler]`, and also assists with defining entry points
//! (i.e. WinMain and DllMain).
extern crate alloc;
pub use HINSTANCE;
pub use *;
pub use *;