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;

/// `E.1` BN_CLICKED
///
/// sent to the parent window when the user clicks a button
pub use winmsg::BN_CLICKED;

/// `E.2` BN_DISABLE
///
/// sent to the parent window when a button is disabled
pub use winmsg::BN_DISABLE;

/// `E.3` BN_DOUBLECLICKED
///
/// sent to the parent window when the user double-clicks a button
pub use winmsg::BN_DOUBLECLICKED;

/// `E.4` BN_HILITE
///
/// sent to the parent window when the user highlights a button
pub use winmsg::BN_HILITE;

/// `E.5` BN_PAINT
///
/// sent to the parent window when a button should be painted
pub use winmsg::BN_PAINT;

/// `E.6` BN_UNHILITE
///
/// sent to the parent window when the highlight should be removed from a button
pub use winmsg::BN_UNHILITE;