apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
use windows_sys::Win32::UI::WindowsAndMessaging as winmsg;

/// `D.1` BM_GETCHECK
///
/// sent to a button to get its check state
pub use winmsg::BM_GETCHECK;

/// `D.2` BM_GETSTATE
///
/// sent to a button to get information about its current state
pub use winmsg::BM_GETSTATE;

/// `D.3` BM_SETCHECK
///
/// sent to a button to set its current check state
pub use winmsg::BM_SETCHECK;

/// `D.4` BM_SETSTATE
///
/// sent to a button to set its current highlight state
pub use winmsg::BM_SETSTATE;

/// `D.5` BM_SETSTYLE
///
/// sent to a button to set its style
pub use winmsg::BM_SETSTYLE;