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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
use UIWindowsAndMessaging as winmsg;
/// `D.6` CB_ADDSTRING
///
/// sent to a combo box and used to add a string to the combo box's list box
pub use CB_ADDSTRING;
/// `D.7` CB_GETCURSEL
///
/// sent to a combo box and used to retrieve the zero-based index position of
/// the currently selected item in the combo box's list box
pub use CB_GETCURSEL;
/// `D.8` CB_DELETESTRING
///
/// sent to a combo box and is used to delete a string from the combo box's list
/// box
pub use CB_DELETESTRING;
/// `D.9` CB_DIR
///
/// sent to a combo box and used to add a list of filenames to the combo box's
/// list box
pub use CB_DIR;
/// `D.10` CB_FINDSTRING
///
/// sent to a combo box and used to search the combo box's list box for an item
/// that begins with the characters in the search string
pub use CB_FINDSTRING;
/// `D.11` CB_FINDSTRINGEXACT
///
/// sent to a combo box and used to search for a string in the combo box's list
/// box
pub use CB_FINDSTRINGEXACT;
/// `D.12` CB_GETCOUNT
///
/// sent to a combo box and retrieves the number of items in the combo box's
/// list box
pub use CB_GETCOUNT;
/// `D.13` CB_GETDROPPEDCONTROLRECT
///
/// sent to a combo box and used to retrieve the screen coordinates of the combo
/// box's visible (dropped-down) list box
pub use CB_GETDROPPEDCONTROLRECT;
/// `D.14` CB_GETDROPPEDSTATE
///
/// sent to a combo box and is used to determine if the combo box's list box is
/// visible (dropped down) or not
pub use CB_GETDROPPEDSTATE;
/// `D.15` CB_GETEDITSEL
///
/// sent to a combo box and used to retrieve the starting and ending character
/// positions of the characters selected in the combo box's edit control
pub use CB_GETEDITSEL;
/// `D.16` CB_GETEXTENDEDUI
///
/// sent to a combo box and used to find out if the combo box has the default
/// user interface or the extended user interface
pub use CB_GETEXTENDEDUI;
/// `D.17` CB_GETITEMDATA
///
/// sent to a combo box and used to retrieve the doubleword value that an
/// application has associated with a combo box's list box item, using the
/// CB_SETITEMDATA message
pub use CB_GETITEMDATA;
/// `D.18` CB_GETITEMHEIGHT
///
/// sent to a combo box and used to retrieve the height of a component of the
/// combo box
pub use CB_GETITEMHEIGHT;
/// `D.19` CB_GETLBTEXT
///
/// sent to a combo box and used to retrieve one of its list box item's strings
pub use CB_GETLBTEXT;
/// `D.20` CB_GETLBTEXTLEN
///
/// sent to a combo box and used to retrieve the size, in bytes, of one of the
/// strings in the combo box's list box
pub use CB_GETLBTEXTLEN;
/// `D.21` CB_INSERTSTRING
///
/// sent to a combo box and used to add a string to the combo box's list box
pub use CB_INSERTSTRING;
/// `D.22` CB_LIMITTEXT
///
/// sent to a combo box and used to limit the size of the text that can be typed
/// into the combo box's edit control
pub use CB_LIMITTEXT;
/// `D.23` CB_RESETCONTENT
///
/// sent to a combo box and is used to clear the contents of the combo box's
/// list box and edit control
pub use CB_RESETCONTENT;
/// `D.24` CB_SELECTSTRING
///
/// sent to a combo box and used to search the combo box's list box for an item
/// that begins with the characters in a given search string
pub use CB_SELECTSTRING;
/// `D.25` CB_SETCURSEL
///
/// sent to a combo box and used to select an item in the combo box's list box
pub use CB_SETCURSEL;
/// `D.26` CB_SETEDITSEL
///
/// sent to a combo box and used to select characters in the edit control of a
/// combo box
pub use CB_SETEDITSEL;
/// `D.27` CB_SETEXTENDEDUI
///
/// sent to a combo box and used to select either the default user interface or
/// the extended user interface for a combo box that has the CBS_DROPDOWN or
/// CBS_DROPDOWNLIST style
pub use CB_SETEXTENDEDUI;
/// `D.28` CB_SETITEMDATA
///
/// sent to a combo box and used to set the doubleword value associated with the
/// specified item in a combo box
pub use CB_SETITEMDATA;
/// `D.29` CB_SETITEMHEIGHT
///
/// sent to a combo box and used to set the height of list items in a combo box
/// or the height of the edit-control (or static-text) portion of a combo box
pub use CB_SETITEMHEIGHT;
/// `D.30` CB_SHOWDROPDOWN
///
/// sent to a combo box and used to show or hide the list box of a combo box
/// that has the CBS_DROPDOWN or CBS_DROPDOWNLIST style
pub use CB_SHOWDROPDOWN;