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.7` CBN_CLOSEUP
///
/// sent when the list box of a combo box is about to be hidden
pub use winmsg::CBN_CLOSEUP;

/// `E.8` CBN_DBLCLCK
///
/// sent to the parent window when the user double-clicks a string in the list
/// box of a combo box
pub use winmsg::CBN_DBLCLK;

/// `E.9` CBN_DROPDOWN
///
/// sent when the list box of a combo box is about to be dropped down
pub use winmsg::CBN_DROPDOWN;

/// `E.10` CBN_EDITCHANGE
///
/// sent after the user has altered the text in the edit-control portion of a
/// combo box
pub use winmsg::CBN_EDITCHANGE;

/// `E.11` CBN_EDITUPDATE
///
/// sent to the parent window when the edit-control portion of a combo box is
/// about to display altered text
pub use winmsg::CBN_EDITUPDATE;

/// `E.12` CBN_ERRSPACE
///
/// sent to the parent window when a combo box cannot allocate enough memory to
/// process a request
pub use winmsg::CBN_ERRSPACE;

/// `E.13` CBN_KILLFOCUS
///
/// sent to the parent window when a combo box loses the input focus
pub use winmsg::CBN_KILLFOCUS;

/// `E.14` CBN_SELCHANGE
///
/// sent to the parent window when the selection in the list box of a combo box
/// is about to be changed as a result of the user either clicking in the list
/// box or changing the selection by using the arrow keys
pub use winmsg::CBN_SELCHANGE;

/// `E.15` CBN_SELENDCANCEL
///
/// sent to the parent window when the user clicks an item, then clicks
/// somewhere else and the list box of a combo box gets hidden
pub use winmsg::CBN_SELENDCANCEL;

/// `E.16` CBN_SELENDOK
///
/// sent to the parent window when the user selects an item and then presses the
/// ENTER or the DOWN ARROW key to hide the list box of a combo box
pub use winmsg::CBN_SELENDOK;

/// `E.17` CBN_SETFOCUS
///
/// sent to the parent window when a combo box receives the input focus
pub use winmsg::CBN_SETFOCUS;