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;

/// Creates a check box button that can be either checked, unchecked or grayed
pub use winmsg::BS_3STATE;

/// Same as `BS_3STATE`, except each time the user clicks on it the state
/// changes to the next state in the cycle: checked, grayed, or unchecked
pub use winmsg::BS_AUTO3STATE;

/// This check box alternates between being checked and unchecked each time the
/// user clicks it
pub use winmsg::BS_AUTOCHECKBOX;

/// This button highlights itself when a user clicks it and causes any other
/// button in the same group to become unhighlighted
pub use winmsg::BS_AUTORADIOBUTTON;

/// Creates a small square that can have an "X" within it, indicating that it is
/// selected
pub use winmsg::BS_CHECKBOX;

/// Causes the button to have a heavy border and is automatically pushed if the
/// user presses the ENTER key
pub use winmsg::BS_DEFPUSHBUTTON;

/// Creates a rectangle to group other buttons
pub use winmsg::BS_GROUPBOX;

/// Causes text to be placed on the left side of a radio button or check box
pub use winmsg::BS_LEFTTEXT;

/// Creates an owner-drawn button
pub use winmsg::BS_OWNERDRAW;

/// Creates a rounded rectangle push button
pub use winmsg::BS_PUSHBUTTON;

/// Creates a radio button that is a small circle with text displayed to the
/// right or left of the circle
pub use winmsg::BS_RADIOBUTTON;