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;

/// Creates an edit control that automatically scrolls horizontally as text is
/// entered
pub use winmsg::ES_AUTOHSCROLL;

/// Creates an edit control that automatically scrolls vertically when there is
/// more text than can be displayed within the control
pub use winmsg::ES_AUTOVSCROLL;

/// Specifies that multiline edit controls center justify text
pub use winmsg::ES_CENTER;

/// Specifies that the edit control left justify its text
pub use winmsg::ES_LEFT;

/// All uppercase characters entered into the edit control is displayed as
/// lowercase
pub use winmsg::ES_LOWERCASE;

/// Causes the edit control to be a multiline control
pub use winmsg::ES_MULTILINE;

/// Negates the default behavior for an edit control, which is to hide the
/// selection when the control loses the input focus and invert the selection
/// when the control receives the input focus
pub use winmsg::ES_NOHIDESEL;

/// Converts text entered in the edit control from the default character set to
/// the OEM character set and then back to the default character set
pub use winmsg::ES_OEMCONVERT;

/// Hides all characters and displays them as an asterisk as they are typed into
/// the edit control
pub use winmsg::ES_PASSWORD;

/// Prevents the user from typing or editing text in the edit control
pub use winmsg::ES_READONLY;

/// Right aligns text in a multiline edit control
pub use winmsg::ES_RIGHT;

/// Converts all characters to uppercase as they are typed into the edit control
pub use winmsg::ES_UPPERCASE;

/// Specifies that a carriage return be inserted when the user presses the ENTER
/// key while entering text into a multiline edit control
pub use winmsg::ES_WANTRETURN;