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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
use UIWindowsAndMessaging as winmsg;
/// `D.61` LB_ADDSTRING
///
/// sent to a list box to add a string to the list box control
pub use LB_ADDSTRING;
/// `D.62` LB_DELETESTRING
///
/// sent to a list box to delete a string to the list box control
pub use LB_DELETESTRING;
/// `D.63` LB_DIR
///
/// sent to a list box to add a directory listing to a list box according to the
/// parameters that are passed
pub use LB_DIR;
/// `D.64` LB_FINDSTRING
///
/// sent to a list box to search the list for a matching entry and returns its
/// index
pub use LB_FINDSTRING;
/// `D.65` LB_FINDSTRINGEXACT
///
/// sent to a list box to search the list for a matching entry and returns its
/// index
pub use LB_FINDSTRINGEXACT;
/// `D.66` LB_GETCARETINDEX
///
/// sent to a list box to find the list item that currently has the focus,
/// regardless of whether it is selected
pub use LB_GETCARETINDEX;
/// `D.67` LB_GETCOUNT
///
/// sent to a list box to find the number of items currently in the list
pub use LB_GETCOUNT;
/// `D.68` LB_GETCURSEL
///
/// sent to a list box to find the index of the currently selected item in the
/// list
pub use LB_GETCURSEL;
/// `D.69` LB_GETHORIZONTALEXTENT
///
/// sent to a list box to finds the number of pixel that can be horizontally
/// scrolled within the list box, if the list box has a horizontal scroll bar
pub use LB_GETHORIZONTALEXTENT;
/// `D.70` LB_GETITEMDATA
///
/// sent to a list box to retrieve data that the application has associated with
/// a given item in the list
pub use LB_GETITEMDATA;
/// `D.71` LB_GETITEMHEIGHT
///
/// sent to a list box to retrieve the height of an item in a list box
pub use LB_GETITEMHEIGHT;
/// `D.72` LB_GETITEMRECT
///
/// sent to a list box to retrieve the display rectangle of an item within the
/// list box
pub use LB_GETITEMRECT;
/// `D.73` LB_GETSEL
///
/// sent to a list box to retrieve the selection status of an item in a list box
pub use LB_GETSEL;
/// `D.74` LB_GETSELCOUNT
///
/// sent to a list box to retrieve the number of items selected in a list box
pub use LB_GETSELCOUNT;
/// `D.75` LB_GETSELITEMS
///
/// sent to a list box to get the index values for all selected items
pub use LB_GETSELITEMS;
/// `D.76` LB_GETTEXT
///
/// sent to a list box to retrieve a string from a list box
pub use LB_GETTEXT;
/// `D.77` LB_GETTEXTLEN
///
/// sent to a list box to retrieve the length of a string from a list box
pub use LB_GETTEXTLEN;
/// `D.78` LB_GETTOPINDEX
///
/// sent to a list box to retrieve the index of the first visible item in a list
/// box
pub use LB_GETTOPINDEX;
/// `D.79` LB_INSERTSTRING
///
/// sent to a list box to insert a string into a list box
pub use LB_INSERTSTRING;
/// `D.80` LB_RESETCONTENT
///
/// sent to a list box to remove all items in a list box
pub use LB_RESETCONTENT;
/// `D.81` LB_SELECTSTRING
///
/// sent to a list box to search for an item in the list box that matches the
/// specified string, and if a match is found, selects the item
pub use LB_SELECTSTRING;
/// `D.82` LB_SELITEMRANGE
///
/// sent to a list box to select or deselect one or more items in a list box
/// consecutively
pub use LB_SELITEMRANGE;
/// `D.83` LB_SETCARETINDEX
///
/// sent to a list box to set the focus on an item in a multiple selection list
/// box
pub use LB_SETCARETINDEX;
/// `D.84` LB_SETCOLUMNWIDTH
///
/// sent to a list box to set the column width in a multiple column list box
pub use LB_SETCOLUMNWIDTH;
/// `D.85` LB_SETCURSEL
///
/// sent to a list box to select an item in a single selection list box
pub use LB_SETCURSEL;
/// `D.86` LB_SETHORIZONTALEXTENT
///
/// sent to a list box to set the width that a list box can be scrolled
/// horizontally
pub use LB_SETHORIZONTALEXTENT;
/// `D.87` LB_SETITEMDATA
///
/// sent to a list box to set a value that is associated with a specific item in
/// the list box
pub use LB_SETITEMDATA;
/// `D.88` LB_SETITEMHEIGHT
///
/// sent to a list box to set the height of items in a list box
pub use LB_SETITEMHEIGHT;
/// `D.89` LB_SETSEL
///
/// sent to a list box to select a string in a multiple selection list box
pub use LB_SETSEL;
/// `D.90` LB_SETTABSTOPS
///
/// sent to a list box to set the tab stops in a list box
pub use LB_SETTABSTOPS;
/// `D.91` LB_SETTOPINDEX
///
/// sent to a list box to make sure an item in the list box is visible
pub use LB_SETTOPINDEX;