1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use UIWindowsAndMessaging as winmsg;
/// `E.18` EN_CHANGE
///
/// sent to the parent window when the user has altered text in an edit control
pub use 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 EN_ERRSPACE;
/// `E.20` EN_HSCROLL
///
/// sent to the parent window after the user has clicked the horizontal scroll
/// bar
pub use EN_HSCROLL;
/// `E.21` EN_KILLFOCUS
///
/// sent to the parent window when the control loses focus
pub use 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 EN_MAXTEXT;
/// `E.23` EN_SETFOCUS
///
/// sent to the parent window when the control receives input focus
pub use EN_SETFOCUS;
/// `E.24` EN_UPDATE
///
/// sent to the parent window before a text change is displayed
pub use EN_UPDATE;
/// `E.25` EN_VSCROLL
///
/// sent to the parent window after the user has clicked the vertical scroll bar
pub use EN_VSCROLL;