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.18` EN_CHANGE
///
/// sent to the parent window when the user has altered text in an edit control
pub use winmsg::EN_CHANGE;

/// `E.19` EN_ERRSPACE
///
/// sent to the parent window when an edit control cannot allocate enough memory
/// to process a request
pub use winmsg::EN_ERRSPACE;

/// `E.20` EN_HSCROLL
///
/// sent to the parent window after the user has clicked the horizontal scroll
/// bar
pub use winmsg::EN_HSCROLL;

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

/// `E.22` EN_MAXTEXT
///
/// sent to the parent window after one of three conditions has occurred: 1) the
/// current insertion exceeds the character limit of the control; 2) the current
/// insertion exceeds the width of a control that does not have the
/// ES_AUTOHSCROLL style; or 3) the current insertion exceeds the height of a
/// control which does not have the ES_AUTOVSCROLL style
pub use winmsg::EN_MAXTEXT;

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

/// `E.24` EN_UPDATE
///
/// sent to the parent window before a text change is displayed
pub use winmsg::EN_UPDATE;

/// `E.25` EN_VSCROLL
///
/// sent to the parent window after the user has clicked the vertical scroll bar
pub use winmsg::EN_VSCROLL;