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.26` LBN_DBLCLK
///
/// sent to the parent window after the user has double-clicked a string in a
/// list box
pub use winmsg::LBN_DBLCLK;

/// `E.27` LBN_ERRSPACE
///
/// sent to the parent window when insufficient memory is available to meet the
/// requirements of a list box operation
pub use winmsg::LBN_ERRSPACE;

/// `E.28` LBN_KILLFOCUS
///
/// sent to the parent window when the control loses focus
pub use winmsg::LBN_KILLFOCUS;

/// `E.29` LBN_SELCANCEL
///
/// sent to the parent window when the user cancels the selection of an item in
/// a list box
pub use winmsg::LBN_SELCANCEL;

/// `E.30` LBN_SELCHANGE
///
/// sent to the parent window when the user changes the selection of an item in
/// a list box
pub use winmsg::LBN_SELCHANGE;

/// `E.31` LBN_SETFOCUS
///
/// sent to the parent window when the control receives input focus
pub use winmsg::LBN_SETFOCUS;