Rearrange struct client_state to reduce memory on amd64
[privoxy.git] / windows / WinMessages.nsh
1 /*\r
2 _____________________________________________________________________________\r
3 \r
4                        List of common Windows Messages\r
5 _____________________________________________________________________________\r
6 \r
7  2005 Shengalts Aleksander aka Instructor (Shengalts@mail.ru)\r
8 \r
9 \r
10 Usage example:\r
11 ---------------------------------------------------\r
12 Name "Output"\r
13 OutFile "Output.exe"\r
14 \r
15 !include "WinMessages.nsh"\r
16 \r
17 Section\r
18         FindWindow $0 '#32770' '' $HWNDPARENT\r
19         GetDlgItem $1 $0 1027\r
20         SendMessage $1 ${WM_SETTEXT} 0 'STR:MyText'\r
21 SectionEnd\r
22 ---------------------------------------------------\r
23 \r
24 \r
25 Prefix  Message category\r
26 -------------------------\r
27 SW      ShowWindow Commands\r
28 BM      Button control\r
29 CB      Combo box control\r
30 EM      Edit control\r
31 LB      List box control\r
32 WM      General window\r
33 ABM     Application desktop toolbar\r
34 DBT     Device\r
35 DM      Default push button control\r
36 HDM     Header control\r
37 LVM     List view control\r
38 SB      Status bar window\r
39 SBM     Scroll bar control\r
40 STM     Static control\r
41 TCM     Tab control\r
42 -----------------------------------\r
43 \r
44 NOT included messages (WM_USER + X)\r
45 -----------------------------------\r
46 CBEM    Extended combo box control\r
47 CDM     Common dialog box\r
48 DL      Drag list box\r
49 DTM     Date and time picker control\r
50 HKM     Hot key control\r
51 IPM     IP address control\r
52 MCM     Month calendar control\r
53 PBM     Progress bar\r
54 PGM     Pager control\r
55 PSM     Property sheet\r
56 RB      Rebar control\r
57 TB      Toolbar\r
58 TBM     Trackbar\r
59 TTM     Tooltip control\r
60 TVM     Tree-view control\r
61 UDM     Up-down control\r
62 -----------------------------------\r
63 */\r
64 \r
65 \r
66 !ifndef WINMESSAGES_INCLUDED\r
67 !define WINMESSAGES_INCLUDED\r
68 !verbose push\r
69 !verbose 3\r
70 \r
71 !define HWND_BROADCAST      0xFFFF\r
72 \r
73 #ShowWindow Commands#\r
74 !define SW_HIDE             0\r
75 !define SW_SHOWNORMAL       1\r
76 !define SW_NORMAL           1\r
77 !define SW_SHOWMINIMIZED    2\r
78 !define SW_SHOWMAXIMIZED    3\r
79 !define SW_MAXIMIZE         3\r
80 !define SW_SHOWNOACTIVATE   4\r
81 !define SW_SHOW             5\r
82 !define SW_MINIMIZE         6\r
83 !define SW_SHOWMINNOACTIVE  7\r
84 !define SW_SHOWNA           8\r
85 !define SW_RESTORE          9\r
86 !define SW_SHOWDEFAULT      10\r
87 !define SW_FORCEMINIMIZE    11\r
88 !define SW_MAX              11\r
89 \r
90 #Button Control Messages#\r
91 !define BM_CLICK           0x00F5\r
92 !define BM_GETCHECK        0x00F0\r
93 !define BM_GETIMAGE        0x00F6\r
94 !define BM_GETSTATE        0x00F2\r
95 !define BM_SETCHECK        0x00F1\r
96 !define BM_SETIMAGE        0x00F7\r
97 !define BM_SETSTATE        0x00F3\r
98 !define BM_SETSTYLE        0x00F4\r
99 \r
100 #Combo Box Messages#\r
101 !define CB_ADDSTRING                0x0143\r
102 !define CB_DELETESTRING             0x0144\r
103 !define CB_DIR                      0x0145\r
104 !define CB_FINDSTRING               0x014C\r
105 !define CB_FINDSTRINGEXACT          0x0158\r
106 !define CB_GETCOUNT                 0x0146\r
107 !define CB_GETCURSEL                0x0147\r
108 !define CB_GETDROPPEDCONTROLRECT    0x0152\r
109 !define CB_GETDROPPEDSTATE          0x0157\r
110 !define CB_GETDROPPEDWIDTH          0x015f\r
111 !define CB_GETEDITSEL               0x0140\r
112 !define CB_GETEXTENDEDUI            0x0156\r
113 !define CB_GETHORIZONTALEXTENT      0x015d\r
114 !define CB_GETITEMDATA              0x0150\r
115 !define CB_GETITEMHEIGHT            0x0154\r
116 !define CB_GETLBTEXT                0x0148\r
117 !define CB_GETLBTEXTLEN             0x0149\r
118 !define CB_GETLOCALE                0x015A\r
119 !define CB_GETTOPINDEX              0x015b\r
120 !define CB_INITSTORAGE              0x0161\r
121 !define CB_INSERTSTRING             0x014A\r
122 !define CB_LIMITTEXT                0x0141\r
123 !define CB_MSGMAX                   0x015B  # 0x0162 0x0163\r
124 !define CB_MULTIPLEADDSTRING        0x0163\r
125 !define CB_RESETCONTENT             0x014B\r
126 !define CB_SELECTSTRING             0x014D\r
127 !define CB_SETCURSEL                0x014E\r
128 !define CB_SETDROPPEDWIDTH          0x0160\r
129 !define CB_SETEDITSEL               0x0142\r
130 !define CB_SETEXTENDEDUI            0x0155\r
131 !define CB_SETHORIZONTALEXTENT      0x015e\r
132 !define CB_SETITEMDATA              0x0151\r
133 !define CB_SETITEMHEIGHT            0x0153\r
134 !define CB_SETLOCALE                0x0159\r
135 !define CB_SETTOPINDEX              0x015c\r
136 !define CB_SHOWDROPDOWN             0x014F\r
137 \r
138 !define CB_ERR                      -1\r
139 \r
140 #Edit Control Messages#\r
141 !define EM_CANUNDO              0x00C6\r
142 !define EM_CHARFROMPOS          0x00D7\r
143 !define EM_EMPTYUNDOBUFFER      0x00CD\r
144 !define EM_FMTLINES             0x00C8\r
145 !define EM_GETFIRSTVISIBLELINE  0x00CE\r
146 !define EM_GETHANDLE            0x00BD\r
147 !define EM_GETIMESTATUS         0x00D9\r
148 !define EM_GETLIMITTEXT         0x00D5\r
149 !define EM_GETLINE              0x00C4\r
150 !define EM_GETLINECOUNT         0x00BA\r
151 !define EM_GETMARGINS           0x00D4\r
152 !define EM_GETMODIFY            0x00B8\r
153 !define EM_GETPASSWORDCHAR      0x00D2\r
154 !define EM_GETRECT              0x00B2\r
155 !define EM_GETSEL               0x00B0\r
156 !define EM_GETTHUMB             0x00BE\r
157 !define EM_GETWORDBREAKPROC     0x00D1\r
158 !define EM_LIMITTEXT            0x00C5\r
159 !define EM_LINEFROMCHAR         0x00C9\r
160 !define EM_LINEINDEX            0x00BB\r
161 !define EM_LINELENGTH           0x00C1\r
162 !define EM_LINESCROLL           0x00B6\r
163 !define EM_POSFROMCHAR          0x00D6\r
164 !define EM_REPLACESEL           0x00C2\r
165 !define EM_SCROLL               0x00B5\r
166 !define EM_SCROLLCARET          0x00B7\r
167 !define EM_SETHANDLE            0x00BC\r
168 !define EM_SETIMESTATUS         0x00D8\r
169 !define EM_SETLIMITTEXT         0x00C5  # Same as EM_LIMITTEXT\r
170 !define EM_SETMARGINS           0x00D3\r
171 !define EM_SETMODIFY            0x00B9\r
172 !define EM_SETPASSWORDCHAR      0x00CC\r
173 !define EM_SETREADONLY          0x00CF\r
174 !define EM_SETRECT              0x00B3\r
175 !define EM_SETRECTNP            0x00B4\r
176 !define EM_SETSEL               0x00B1\r
177 !define EM_SETTABSTOPS          0x00CB\r
178 !define EM_SETWORDBREAKPROC     0x00D0\r
179 !define EM_UNDO                 0x00C7\r
180 \r
181 #Listbox Messages#\r
182 !define LB_ADDFILE              0x0196\r
183 !define LB_ADDSTRING            0x0180\r
184 !define LB_DELETESTRING         0x0182\r
185 !define LB_DIR                  0x018D\r
186 !define LB_FINDSTRING           0x018F\r
187 !define LB_FINDSTRINGEXACT      0x01A2\r
188 !define LB_GETANCHORINDEX       0x019D\r
189 !define LB_GETCARETINDEX        0x019F\r
190 !define LB_GETCOUNT             0x018B\r
191 !define LB_GETCURSEL            0x0188\r
192 !define LB_GETHORIZONTALEXTENT  0x0193\r
193 !define LB_GETITEMDATA          0x0199\r
194 !define LB_GETITEMHEIGHT        0x01A1\r
195 !define LB_GETITEMRECT          0x0198\r
196 !define LB_GETLOCALE            0x01A6\r
197 !define LB_GETSEL               0x0187\r
198 !define LB_GETSELCOUNT          0x0190\r
199 !define LB_GETSELITEMS          0x0191\r
200 !define LB_GETTEXT              0x0189\r
201 !define LB_GETTEXTLEN           0x018A\r
202 !define LB_GETTOPINDEX          0x018E\r
203 !define LB_INITSTORAGE          0x01A8\r
204 !define LB_INSERTSTRING         0x0181\r
205 !define LB_ITEMFROMPOINT        0x01A9\r
206 !define LB_MSGMAX               0x01A8  # 0x01B0 0x01B1\r
207 !define LB_MULTIPLEADDSTRING    0x01B1\r
208 !define LB_RESETCONTENT         0x0184\r
209 !define LB_SELECTSTRING         0x018C\r
210 !define LB_SELITEMRANGE         0x019B\r
211 !define LB_SELITEMRANGEEX       0x0183\r
212 !define LB_SETANCHORINDEX       0x019C\r
213 !define LB_SETCARETINDEX        0x019E\r
214 !define LB_SETCOLUMNWIDTH       0x0195\r
215 !define LB_SETCOUNT             0x01A7\r
216 !define LB_SETCURSEL            0x0186\r
217 !define LB_SETHORIZONTALEXTENT  0x0194\r
218 !define LB_SETITEMDATA          0x019A\r
219 !define LB_SETITEMHEIGHT        0x01A0\r
220 !define LB_SETLOCALE            0x01A5\r
221 !define LB_SETSEL               0x0185\r
222 !define LB_SETTABSTOPS          0x0192\r
223 !define LB_SETTOPINDEX          0x0197\r
224 \r
225 !define LB_ERR                  -1\r
226 \r
227 #Window Messages#\r
228 !define WM_ACTIVATE                     0x0006\r
229 !define WM_ACTIVATEAPP                  0x001C\r
230 !define WM_AFXFIRST                     0x0360\r
231 !define WM_AFXLAST                      0x037F\r
232 !define WM_APP                          0x8000\r
233 !define WM_APPCOMMAND                   0x0319\r
234 !define WM_ASKCBFORMATNAME              0x030C\r
235 !define WM_CANCELJOURNAL                0x004B\r
236 !define WM_CANCELMODE                   0x001F\r
237 !define WM_CAPTURECHANGED               0x0215\r
238 !define WM_CHANGECBCHAIN                0x030D\r
239 !define WM_CHANGEUISTATE                0x0127\r
240 !define WM_CHAR                         0x0102\r
241 !define WM_CHARTOITEM                   0x002F\r
242 !define WM_CHILDACTIVATE                0x0022\r
243 !define WM_CLEAR                        0x0303\r
244 !define WM_CLOSE                        0x0010\r
245 !define WM_COMMAND                      0x0111\r
246 !define WM_COMMNOTIFY                   0x0044  # no longer suported\r
247 !define WM_COMPACTING                   0x0041\r
248 !define WM_COMPAREITEM                  0x0039\r
249 !define WM_CONTEXTMENU                  0x007B\r
250 !define WM_CONVERTREQUESTEX             0x108\r
251 !define WM_COPY                         0x0301\r
252 !define WM_COPYDATA                     0x004A\r
253 !define WM_CREATE                       0x0001\r
254 !define WM_CTLCOLOR                     0x0019\r
255 !define WM_CTLCOLORBTN                  0x0135\r
256 !define WM_CTLCOLORDLG                  0x0136\r
257 !define WM_CTLCOLOREDIT                 0x0133\r
258 !define WM_CTLCOLORLISTBOX              0x0134\r
259 !define WM_CTLCOLORMSGBOX               0x0132\r
260 !define WM_CTLCOLORSCROLLBAR            0x0137\r
261 !define WM_CTLCOLORSTATIC               0x0138\r
262 !define WM_CUT                          0x0300\r
263 !define WM_DDE_FIRST                    0x3E0\r
264 !define WM_DEADCHAR                     0x0103\r
265 !define WM_DELETEITEM                   0x002D\r
266 !define WM_DESTROY                      0x0002\r
267 !define WM_DESTROYCLIPBOARD             0x0307\r
268 !define WM_DEVICECHANGE                 0x0219\r
269 !define WM_DEVMODECHANGE                0x001B\r
270 !define WM_DISPLAYCHANGE                0x007E\r
271 !define WM_DRAWCLIPBOARD                0x0308\r
272 !define WM_DRAWITEM                     0x002B\r
273 !define WM_DROPFILES                    0x0233\r
274 !define WM_ENABLE                       0x000A\r
275 !define WM_ENDSESSION                   0x0016\r
276 !define WM_ENTERIDLE                    0x0121\r
277 !define WM_ENTERMENULOOP                0x0211\r
278 !define WM_ENTERSIZEMOVE                0x0231\r
279 !define WM_ERASEBKGND                   0x0014\r
280 !define WM_EXITMENULOOP                 0x0212\r
281 !define WM_EXITSIZEMOVE                 0x0232\r
282 !define WM_FONTCHANGE                   0x001D\r
283 !define WM_GETDLGCODE                   0x0087\r
284 !define WM_GETFONT                      0x0031\r
285 !define WM_GETHOTKEY                    0x0033\r
286 !define WM_GETICON                      0x007F\r
287 !define WM_GETMINMAXINFO                0x0024\r
288 !define WM_GETOBJECT                    0x003D\r
289 !define WM_GETTEXT                      0x000D\r
290 !define WM_GETTEXTLENGTH                0x000E\r
291 !define WM_HANDHELDFIRST                0x0358\r
292 !define WM_HANDHELDLAST                 0x035F\r
293 !define WM_HELP                         0x0053\r
294 !define WM_HOTKEY                       0x0312\r
295 !define WM_HSCROLL                      0x0114\r
296 !define WM_HSCROLLCLIPBOARD             0x030E\r
297 !define WM_ICONERASEBKGND               0x0027\r
298 !define WM_IME_CHAR                     0x0286\r
299 !define WM_IME_COMPOSITION              0x010F\r
300 !define WM_IME_COMPOSITIONFULL          0x0284\r
301 !define WM_IME_CONTROL                  0x0283\r
302 !define WM_IME_ENDCOMPOSITION           0x010E\r
303 !define WM_IME_KEYDOWN                  0x0290\r
304 !define WM_IME_KEYLAST                  0x010F\r
305 !define WM_IME_KEYUP                    0x0291\r
306 !define WM_IME_NOTIFY                   0x0282\r
307 !define WM_IME_REQUEST                  0x0288\r
308 !define WM_IME_SELECT                   0x0285\r
309 !define WM_IME_SETCONTEXT               0x0281\r
310 !define WM_IME_STARTCOMPOSITION         0x010D\r
311 !define WM_INITDIALOG                   0x0110\r
312 !define WM_INITMENU                     0x0116\r
313 !define WM_INITMENUPOPUP                0x0117\r
314 !define WM_INPUT                        0x00FF\r
315 !define WM_INPUTLANGCHANGE              0x0051\r
316 !define WM_INPUTLANGCHANGEREQUEST       0x0050\r
317 !define WM_KEYDOWN                      0x0100\r
318 !define WM_KEYFIRST                     0x0100\r
319 !define WM_KEYLAST                      0x0108\r
320 !define WM_KEYUP                        0x0101\r
321 !define WM_KILLFOCUS                    0x0008\r
322 !define WM_LBUTTONDBLCLK                0x0203\r
323 !define WM_LBUTTONDOWN                  0x0201\r
324 !define WM_LBUTTONUP                    0x0202\r
325 !define WM_MBUTTONDBLCLK                0x0209\r
326 !define WM_MBUTTONDOWN                  0x0207\r
327 !define WM_MBUTTONUP                    0x0208\r
328 !define WM_MDIACTIVATE                  0x0222\r
329 !define WM_MDICASCADE                   0x0227\r
330 !define WM_MDICREATE                    0x0220\r
331 !define WM_MDIDESTROY                   0x0221\r
332 !define WM_MDIGETACTIVE                 0x0229\r
333 !define WM_MDIICONARRANGE               0x0228\r
334 !define WM_MDIMAXIMIZE                  0x0225\r
335 !define WM_MDINEXT                      0x0224\r
336 !define WM_MDIREFRESHMENU               0x0234\r
337 !define WM_MDIRESTORE                   0x0223\r
338 !define WM_MDISETMENU                   0x0230\r
339 !define WM_MDITILE                      0x0226\r
340 !define WM_MEASUREITEM                  0x002C\r
341 !define WM_MENUCHAR                     0x0120\r
342 !define WM_MENUCOMMAND                  0x0126\r
343 !define WM_MENUDRAG                     0x0123\r
344 !define WM_MENUGETOBJECT                0x0124\r
345 !define WM_MENURBUTTONUP                0x0122\r
346 !define WM_MENUSELECT                   0x011F\r
347 !define WM_MOUSEACTIVATE                0x0021\r
348 !define WM_MOUSEFIRST                   0x0200\r
349 !define WM_MOUSEHOVER                   0x02A1\r
350 !define WM_MOUSELAST                    0x0209  # 0x020A 0x020D\r
351 !define WM_MOUSELEAVE                   0x02A3\r
352 !define WM_MOUSEMOVE                    0x0200\r
353 !define WM_MOUSEWHEEL                   0x020A\r
354 !define WM_MOVE                         0x0003\r
355 !define WM_MOVING                       0x0216\r
356 !define WM_NCACTIVATE                   0x0086\r
357 !define WM_NCCALCSIZE                   0x0083\r
358 !define WM_NCCREATE                     0x0081\r
359 !define WM_NCDESTROY                    0x0082\r
360 !define WM_NCHITTEST                    0x0084\r
361 !define WM_NCLBUTTONDBLCLK              0x00A3\r
362 !define WM_NCLBUTTONDOWN                0x00A1\r
363 !define WM_NCLBUTTONUP                  0x00A2\r
364 !define WM_NCMBUTTONDBLCLK              0x00A9\r
365 !define WM_NCMBUTTONDOWN                0x00A7\r
366 !define WM_NCMBUTTONUP                  0x00A8\r
367 !define WM_NCMOUSEHOVER                 0x02A0\r
368 !define WM_NCMOUSELEAVE                 0x02A2\r
369 !define WM_NCMOUSEMOVE                  0x00A0\r
370 !define WM_NCPAINT                      0x0085\r
371 !define WM_NCRBUTTONDBLCLK              0x00A6\r
372 !define WM_NCRBUTTONDOWN                0x00A4\r
373 !define WM_NCRBUTTONUP                  0x00A5\r
374 !define WM_NCXBUTTONDBLCLK              0x00AD\r
375 !define WM_NCXBUTTONDOWN                0x00AB\r
376 !define WM_NCXBUTTONUP                  0x00AC\r
377 !define WM_NEXTDLGCTL                   0x0028\r
378 !define WM_NEXTMENU                     0x0213\r
379 !define WM_NOTIFY                       0x004E\r
380 !define WM_NOTIFYFORMAT                 0x0055\r
381 !define WM_NULL                         0x0000\r
382 !define WM_PAINT                        0x000F\r
383 !define WM_PAINTCLIPBOARD               0x0309\r
384 !define WM_PAINTICON                    0x0026\r
385 !define WM_PALETTECHANGED               0x0311\r
386 !define WM_PALETTEISCHANGING            0x0310\r
387 !define WM_PARENTNOTIFY                 0x0210\r
388 !define WM_PASTE                        0x0302\r
389 !define WM_PENWINFIRST                  0x0380\r
390 !define WM_PENWINLAST                   0x038F\r
391 !define WM_POWER                        0x0048\r
392 !define WM_POWERBROADCAST               0x0218\r
393 !define WM_PRINT                        0x0317\r
394 !define WM_PRINTCLIENT                  0x0318\r
395 !define WM_QUERYDRAGICON                0x0037\r
396 !define WM_QUERYENDSESSION              0x0011\r
397 !define WM_QUERYNEWPALETTE              0x030F\r
398 !define WM_QUERYOPEN                    0x0013\r
399 !define WM_QUERYUISTATE                 0x0129\r
400 !define WM_QUEUESYNC                    0x0023\r
401 !define WM_QUIT                         0x0012\r
402 !define WM_RBUTTONDBLCLK                0x0206\r
403 !define WM_RBUTTONDOWN                  0x0204\r
404 !define WM_RBUTTONUP                    0x0205\r
405 !define WM_RASDIALEVENT                 0xCCCD\r
406 !define WM_RENDERALLFORMATS             0x0306\r
407 !define WM_RENDERFORMAT                 0x0305\r
408 !define WM_SETCURSOR                    0x0020\r
409 !define WM_SETFOCUS                     0x0007\r
410 !define WM_SETFONT                      0x0030\r
411 !define WM_SETHOTKEY                    0x0032\r
412 !define WM_SETICON                      0x0080\r
413 !define WM_SETREDRAW                    0x000B\r
414 !define WM_SETTEXT                      0x000C\r
415 !define WM_SETTINGCHANGE                0x001A  # Same as WM_WININICHANGE\r
416 !define WM_SHOWWINDOW                   0x0018\r
417 !define WM_SIZE                         0x0005\r
418 !define WM_SIZECLIPBOARD                0x030B\r
419 !define WM_SIZING                       0x0214\r
420 !define WM_SPOOLERSTATUS                0x002A\r
421 !define WM_STYLECHANGED                 0x007D\r
422 !define WM_STYLECHANGING                0x007C\r
423 !define WM_SYNCPAINT                    0x0088\r
424 !define WM_SYSCHAR                      0x0106\r
425 !define WM_SYSCOLORCHANGE               0x0015\r
426 !define WM_SYSCOMMAND                   0x0112\r
427 !define WM_SYSDEADCHAR                  0x0107\r
428 !define WM_SYSKEYDOWN                   0x0104\r
429 !define WM_SYSKEYUP                     0x0105\r
430 !define WM_TABLET_FIRST                 0x02C0\r
431 !define WM_TABLET_LAST                  0x02DF\r
432 !define WM_THEMECHANGED                 0x031A\r
433 !define WM_TCARD                        0x0052\r
434 !define WM_TIMECHANGE                   0x001E\r
435 !define WM_TIMER                        0x0113\r
436 !define WM_UNDO                         0x0304\r
437 !define WM_UNICHAR                      0x0109\r
438 !define WM_UNINITMENUPOPUP              0x0125\r
439 !define WM_UPDATEUISTATE                0x0128\r
440 !define WM_USER                         0x400\r
441 !define WM_USERCHANGED                  0x0054\r
442 !define WM_VKEYTOITEM                   0x002E\r
443 !define WM_VSCROLL                      0x0115\r
444 !define WM_VSCROLLCLIPBOARD             0x030A\r
445 !define WM_WINDOWPOSCHANGED             0x0047\r
446 !define WM_WINDOWPOSCHANGING            0x0046\r
447 !define WM_WININICHANGE                 0x001A\r
448 !define WM_WTSSESSION_CHANGE            0x02B1\r
449 !define WM_XBUTTONDBLCLK                0x020D\r
450 !define WM_XBUTTONDOWN                  0x020B\r
451 !define WM_XBUTTONUP                    0x020C\r
452 \r
453 \r
454 #Application desktop toolbar#\r
455 !define ABM_ACTIVATE         0x00000006  # lParam == TRUE/FALSE means activate/deactivate\r
456 !define ABM_GETAUTOHIDEBAR   0x00000007\r
457 !define ABM_GETSTATE         0x00000004\r
458 !define ABM_GETTASKBARPOS    0x00000005\r
459 !define ABM_NEW              0x00000000\r
460 !define ABM_QUERYPOS         0x00000002\r
461 !define ABM_REMOVE           0x00000001\r
462 !define ABM_SETAUTOHIDEBAR   0x00000008  # This can fail, you MUST check the result\r
463 !define ABM_SETPOS           0x00000003\r
464 !define ABM_WINDOWPOSCHANGED 0x0000009\r
465 \r
466 #Device#\r
467 !define DBT_APPYBEGIN                   0x0000\r
468 !define DBT_APPYEND                     0x0001\r
469 !define DBT_CONFIGCHANGECANCELED        0x0019\r
470 !define DBT_CONFIGCHANGED               0x0018\r
471 !define DBT_CONFIGMGAPI32               0x0022\r
472 !define DBT_CONFIGMGPRIVATE             0x7FFF\r
473 !define DBT_CUSTOMEVENT                 0x8006  # User-defined event\r
474 !define DBT_DEVICEARRIVAL               0x8000  # System detected a new device\r
475 !define DBT_DEVICEQUERYREMOVE           0x8001  # Wants to remove, may fail\r
476 !define DBT_DEVICEQUERYREMOVEFAILED     0x8002  # Removal aborted\r
477 !define DBT_DEVICEREMOVECOMPLETE        0x8004  # Device is gone\r
478 !define DBT_DEVICEREMOVEPENDING         0x8003  # About to remove, still avail.\r
479 !define DBT_DEVICETYPESPECIFIC          0x8005  # Type specific event\r
480 !define DBT_DEVNODES_CHANGED            0x0007\r
481 !define DBT_DEVTYP_DEVICEINTERFACE      0x00000005  # Device interface class\r
482 !define DBT_DEVTYP_DEVNODE              0x00000001  # Devnode number\r
483 !define DBT_DEVTYP_HANDLE               0x00000006  # File system handle\r
484 !define DBT_DEVTYP_NET                  0x00000004  # Network resource\r
485 !define DBT_DEVTYP_OEM                  0x00000000  # Oem-defined device type\r
486 !define DBT_DEVTYP_PORT                 0x00000003  # Serial, parallel\r
487 !define DBT_DEVTYP_VOLUME               0x00000002  # Logical volume\r
488 !define DBT_LOW_DISK_SPACE              0x0048\r
489 !define DBT_MONITORCHANGE               0x001B\r
490 !define DBT_NO_DISK_SPACE               0x0047\r
491 !define DBT_QUERYCHANGECONFIG           0x0017\r
492 !define DBT_SHELLLOGGEDON               0x0020\r
493 !define DBT_USERDEFINED                 0xFFFF\r
494 !define DBT_VOLLOCKLOCKFAILED           0x8043\r
495 !define DBT_VOLLOCKLOCKRELEASED         0x8045\r
496 !define DBT_VOLLOCKLOCKTAKEN            0x8042\r
497 !define DBT_VOLLOCKQUERYLOCK            0x8041\r
498 !define DBT_VOLLOCKQUERYUNLOCK          0x8044\r
499 !define DBT_VOLLOCKUNLOCKFAILED         0x8046\r
500 !define DBT_VPOWERDAPI                  0x8100  # VPOWERD API for Win95\r
501 !define DBT_VXDINITCOMPLETE             0x0023\r
502 \r
503 #Default push button control#\r
504 !define DM_BITSPERPEL       0x00040000\r
505 !define DM_COLLATE          0x00008000\r
506 !define DM_COLOR            0x00000800\r
507 !define DM_COPIES           0x00000100\r
508 !define DM_DEFAULTSOURCE    0x00000200\r
509 !define DM_DISPLAYFLAGS     0x00200000\r
510 !define DM_DISPLAYFREQUENCY 0x00400000\r
511 !define DM_DITHERTYPE       0x04000000\r
512 !define DM_DUPLEX           0x00001000\r
513 !define DM_FORMNAME         0x00010000\r
514 !define DM_GRAYSCALE        0x00000001  # This flag is no longer valid\r
515 !define DM_ICMINTENT        0x01000000\r
516 !define DM_ICMMETHOD        0x00800000\r
517 !define DM_INTERLACED       0x00000002  # This flag is no longer valid\r
518 !define DM_LOGPIXELS        0x00020000\r
519 !define DM_MEDIATYPE        0x02000000\r
520 !define DM_NUP              0x00000040\r
521 !define DM_ORIENTATION      0x00000001\r
522 !define DM_PANNINGHEIGHT    0x10000000\r
523 !define DM_PANNINGWIDTH     0x08000000\r
524 !define DM_PAPERLENGTH      0x00000004\r
525 !define DM_PAPERSIZE        0x00000002\r
526 !define DM_PAPERWIDTH       0x00000008\r
527 !define DM_PELSHEIGHT       0x00100000\r
528 !define DM_PELSWIDTH        0x00080000\r
529 !define DM_POSITION         0x00000020\r
530 !define DM_PRINTQUALITY     0x00000400\r
531 !define DM_SCALE            0x00000010\r
532 !define DM_SPECVERSION      0x0320       # 0x0400 0x0401\r
533 !define DM_TTOPTION         0x00004000\r
534 !define DM_YRESOLUTION      0x00002000\r
535 \r
536 #Header control#\r
537 !define HDM_FIRST           0x1200\r
538 \r
539 #List view control#\r
540 !define LVM_FIRST           0x1000\r
541 \r
542 #Status bar window#\r
543 !define SB_CONST_ALPHA      0x00000001\r
544 !define SB_GRAD_RECT        0x00000010\r
545 !define SB_GRAD_TRI         0x00000020\r
546 !define SB_NONE             0x00000000\r
547 !define SB_PIXEL_ALPHA      0x00000002\r
548 !define SB_PREMULT_ALPHA    0x00000004\r
549 !define SB_SIMPLEID         0x00ff\r
550 \r
551 #Scroll bar control#\r
552 !define SBM_ENABLE_ARROWS           0x00E4  # Not in win3.1\r
553 !define SBM_GETPOS                  0x00E1  # Not in win3.1\r
554 !define SBM_GETRANGE                0x00E3  # Not in win3.1\r
555 !define SBM_GETSCROLLINFO           0x00EA\r
556 !define SBM_SETPOS                  0x00E0  # Not in win3.1\r
557 !define SBM_SETRANGE                0x00E2  # Not in win3.1\r
558 !define SBM_SETRANGEREDRAW          0x00E6  # Not in win3.1\r
559 !define SBM_SETSCROLLINFO           0x00E9\r
560 \r
561 #Static control#\r
562 !define STM_GETICON                 0x0171\r
563 !define STM_GETIMAGE                0x0173\r
564 !define STM_MSGMAX                  0x0174\r
565 !define STM_ONLY_THIS_INTERFACE     0x00000001\r
566 !define STM_ONLY_THIS_NAME          0x00000008\r
567 !define STM_ONLY_THIS_PROTOCOL      0x00000002\r
568 !define STM_ONLY_THIS_TYPE          0x00000004\r
569 !define STM_SETICON                 0x0170\r
570 !define STM_SETIMAGE                0x0172\r
571 \r
572 #Tab control#\r
573 !define TCM_FIRST                   0x1300\r
574 \r
575 !verbose pop\r
576 !endif