min32 0.1.2

Minimal boilerplate code for targeting win32 with no-std
Documentation
//! # 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).

#![no_std]
#![warn(missing_docs)]

extern crate alloc;

pub use windows_sys::Win32::Foundation::HINSTANCE;
pub use min32_proc::*;

mod panic;

pub use panic::*;

mod alloc_impl;