use UIWindowsAndMessaging 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 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 LBN_ERRSPACE;
/// `E.28` LBN_KILLFOCUS
///
/// sent to the parent window when the control loses focus
pub use 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 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 LBN_SELCHANGE;
/// `E.31` LBN_SETFOCUS
///
/// sent to the parent window when the control receives input focus
pub use LBN_SETFOCUS;