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;

/// Shows a disabled vertical scroll bar for the list box when the box does not
/// contain enough items to scroll
pub use winmsg::LBS_DISABLENOSCROLL;

/// Allows multiple items to be selected by using the SHIFT key and the mouse,
/// or special key combinations
pub use winmsg::LBS_EXTENDEDSEL;

/// Specifies that a list box contains items consisting of strings
pub use winmsg::LBS_HASSTRINGS;

/// Specifies a multicolumn list box that is scrolled horizontally
pub use winmsg::LBS_MULTICOLUMN;

/// This list box style allows for the selection of any number of strings
pub use winmsg::LBS_MULTIPLESEL;

/// This list box style prevents the height of a list box from being adjusted so
/// that partial items are not displayed
pub use winmsg::LBS_NOINTEGRALHEIGHT;

/// This list box style suppresses screen updates when changes are made
pub use winmsg::LBS_NOREDRAW;

/// This list box style enables the notification of the parent window when a
/// string in the list box is clicked or double-clicked
pub use winmsg::LBS_NOTIFY;

/// This list box style specifies that the application is responsible for
/// drawing the list box and that all the items have the same height
pub use winmsg::LBS_OWNERDRAWFIXED;

/// This list box style specifies that the application is responsible for
/// drawing the list box and that the items in the list box vary in height
pub use winmsg::LBS_OWNERDRAWVARIABLE;

/// This list box style causes the list box strings to be sorted alphabetically
pub use winmsg::LBS_SORT;

/// This list box style combines the `LBS_NOTIFY` and `LBS_SORT` list box styles
/// with the windows styles `WS_BORDER` and `WS_VSCROLL`
pub use winmsg::LBS_STANDARD;

/// This list box style expands tab characters within its content strings
pub use winmsg::LBS_USETABSTOPS;

/// This list box style indicates that the owner receives `WM_VKEYTOITEM` or
/// `WM_CHARTOITEM` messages when the list box has input focus and the user
/// presses a key
pub use winmsg::LBS_WANTKEYBOARDINPUT;