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;

/// If the combo box's edit control is completely filled with text and the user
/// enters more text at the end of the edit control line, the existing text is
/// automatically scrolled
pub use winmsg::CBS_AUTOHSCROLL;

/// A scroll bar is always shown in the combo box's list box
pub use winmsg::CBS_DISABLENOSCROLL;

/// Similar to the `CBS_SIMPLE` style, the `CBS_DROPDOWN` style causes the combo
/// box's list box to be hidden until the user presses the Arrow button located
/// next to the combo box's edit control
pub use winmsg::CBS_DROPDOWN;

/// Similar to the `CBS_DROPDOWN` style, the `CBS_DROPDOWNLIST` style causes the
/// combo box's edit control to be set to read-only
pub use winmsg::CBS_DROPDOWNLIST;

/// Declares that the entries in an owner-drawn combo box are strings
pub use winmsg::CBS_HASSTRINGS;

/// If this style is not used, the system automatically resizes the height of
/// the combo box so that none of its items are partially displayed
pub use winmsg::CBS_NOINTEGRALHEIGHT;

/// When this style is used, text that is entered into the combo box's edit
/// control is automatically converted from the system's character set to the
/// OEM character set and then back again to the system's character set
pub use winmsg::CBS_OEMCONVERT;

/// When this style is used, the system makes the owner of the combo box
/// responsible for drawing its contents and the height of all of the list box's
/// items is the same
pub use winmsg::CBS_OWNERDRAWFIXED;

/// When this style is used, the system makes the owner of the combo box
/// responsible for drawing its contents and the height of each of the list
/// box's items is not the same
pub use winmsg::CBS_OWNERDRAWVARIABLE;

/// When this style is used, the combo box's list box is always displayed
pub use winmsg::CBS_SIMPLE;

/// The combo box's list box entries are automatically sorted
pub use winmsg::CBS_SORT;