apiw-sys 0.1.0

This crate provides core API bindings for Windows according to ECMA-234.
Documentation
use windows_sys::Win32::UI::Controls as ctrls;

/// `D.33` EM_CANUNDO
///
/// sent to an edit control to determine whether an edit-control operation can
/// be undone
pub use ctrls::EM_CANUNDO;

/// `D.34` EM_EMPTYUNDOBUFFER
///
/// sent to an edit control to reset (clear) the undo flag of an edit control.
/// The undo flag is set whenever an operation within the edit control can be
/// undone
pub use ctrls::EM_EMPTYUNDOBUFFER;

/// `D.35` EM_FMTLINES
///
/// sent to an edit control to set the inclusion of soft line break characters
/// on or off within a multiline edit control
pub use ctrls::EM_FMTLINES;

/// `D.36` EM_GETFIRSTVISIBLELINE
///
/// sent to an edit control to determine the topmost visible line in an edit
/// control
pub use ctrls::EM_GETFIRSTVISIBLELINE;

/// `D.37` EM_GETHANDLE
///
/// sent to an edit control to retrieve a handle to the memory currently
/// allocated for a multiline edit control
pub use ctrls::EM_GETHANDLE;

/// `D.38` EM_GETLINE
///
/// sent to an edit control to retrieve a line of text from an edit control
pub use ctrls::EM_GETLINE;

/// `D.39` EM_GETLINECOUNT
///
/// sent to an edit control to retrieve the number of lines in a multiline edit
/// control. This message is processed only by multiline edit controls
pub use ctrls::EM_GETLINECOUNT;

/// `D.40` EM_GETMODIFY
///
/// sent to an edit control to determine whether the contents of an edit control
/// have been modified
pub use ctrls::EM_GETMODIFY;

/// `D.41` EM_GETPASSWORDCHAR
///
/// sent to an edit control to retrieve the password character displayed in an
/// edit control when the user enters text
pub use ctrls::EM_GETPASSWORDCHAR;

/// `D.42` EM_GETRECT
///
/// sent to an edit control to retrieve the formatting rectangle of an edit
/// control
pub use ctrls::EM_GETRECT;

/// `D.43` EM_GETSEL
///
/// sent to an edit control to get the starting and ending character positions
/// of the current selection in an edit control
pub use ctrls::EM_GETSEL;

/// `D.44` EM_GETWORDBREAKPROC
///
/// sent to an edit control to retrieve the current wordwrap function
pub use ctrls::EM_GETWORDBREAKPROC;

/// `D.45` EM_LIMITTEXT
///
/// sent to an edit control to limit the length of the text the user can enter
/// into an edit control
pub use ctrls::EM_LIMITTEXT;

/// `D.46` EM_LINEFROMCHAR
///
/// sent to an edit control to retrieve the line number of the line that
/// contains the specified character index
pub use ctrls::EM_LINEFROMCHAR;

/// `D.47` EM_LINEINDEX
///
/// sent to an edit control to retrieve the character index of a line within a
/// multiline edit control
pub use ctrls::EM_LINEINDEX;

/// `D.48` EM_LINELENGTH
///
/// sent to an edit control to retrieve the character index of a line within a
/// multiline edit control
pub use ctrls::EM_LINELENGTH;

/// `D.49` EM_LINESCROLL
///
/// sent to an edit control to scroll the text of a multiline edit control
pub use ctrls::EM_LINESCROLL;

/// `D.50` EM_REPLACESEL
///
/// sent to an edit control to replace the current selection in an edit control
/// with the text specified by the value of the lParam parameter
pub use ctrls::EM_REPLACESEL;

/// `D.51` EM_SETHANDLE
///
/// sent to an edit control to set a handle to local memory that is used by the
/// control. Processed by multiline edit controls only.
pub use ctrls::EM_SETHANDLE;

/// `D.52` EM_SETMODIFY
///
/// sent to an edit control to set the modification status of the edit control.
/// This status indicates whether the control has been modified
pub use ctrls::EM_SETMODIFY;

/// `D.53` EM_SETPASSWORDCHAR
///
/// sent to an edit control to set the character to be used for display instead
/// of the actual characters typed by the user
pub use ctrls::EM_SETPASSWORDCHAR;

/// `D.54` EM_SETREADONLY
///
/// sent to an edit control to set a flag that indicates whether the user may
/// modify the edit control
pub use ctrls::EM_SETREADONLY;

/// `D.55` EM_SETRECT
///
/// sent to an edit control to modify the formatting rectangle of a multiline
/// edit control
pub use ctrls::EM_SETRECT;

/// `D.56` EM_SETRECTNP
///
/// sent to an edit control to modify the formatting rectangle of a multiline
/// edit control
pub use ctrls::EM_SETRECTNP;

/// `D.57` EM_SETSEL
///
/// sent to an edit control to set the selected text within the edit control
pub use ctrls::EM_SETSEL;

/// `D.58` EM_SETTABSTOPS
///
/// sent to an edit control to resets the tabs for a multiline edit control
pub use ctrls::EM_SETTABSTOPS;

/// `D.59` EM_SETWORDBREAKPROC
///
/// sent to an edit control to replace the default word break function
pub use ctrls::EM_SETWORDBREAKPROC;

/// `D.60` EM_UNDO
///
/// sent to an edit control to undo the last change made to the control
pub use ctrls::EM_UNDO;