shell32/autocomplete: Remove the property after replacing the callback instead of...
[wine.git] / include / winuser.rh
blobbcc716076f27246f84c62b0689108d78dbb1dedb
1 /*
2  * Copyright (C) the Wine project
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
19 /* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
20 #ifndef __MSABI_LONG
21 # if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
22 #  define __MSABI_LONG(x)         x ## l
23 # else
24 #  define __MSABI_LONG(x)         x
25 # endif
26 #endif
28 #ifdef RC_INVOKED
29 # define MAKEINTRESOURCE(i)       i
30 #endif
33 #define RT_MANIFEST                                        MAKEINTRESOURCE(24)
34 #define CREATEPROCESS_MANIFEST_RESOURCE_ID                 MAKEINTRESOURCE(1)
35 #define ISOLATIONAWARE_MANIFEST_RESOURCE_ID                MAKEINTRESOURCE(2)
36 #define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID MAKEINTRESOURCE(3)
37 #define MINIMUM_RESERVED_MANIFEST_RESOURCE_ID              MAKEINTRESOURCE(1)
38 #define MAXIMUM_RESERVED_MANIFEST_RESOURCE_ID              MAKEINTRESOURCE(16)
41 /*** ShowWindow() codes ***/
42 #define SW_HIDE                0
43 #define SW_SHOWNORMAL          1
44 #define SW_NORMAL              SW_SHOWNORMAL
45 #define SW_SHOWMINIMIZED       2
46 #define SW_SHOWMAXIMIZED       3
47 #define SW_MAXIMIZE            SW_SHOWMAXIMIZED
48 #define SW_SHOWNOACTIVATE      4
49 #define SW_SHOW                5
50 #define SW_MINIMIZE            6
51 #define SW_SHOWMINNOACTIVE     7
52 #define SW_SHOWNA              8
53 #define SW_RESTORE             9
54 #define SW_SHOWDEFAULT         10
55 #define SW_FORCEMINIMIZE       11
56 #define SW_MAX                 11
57 #define SW_NORMALNA            0xCC /* Undocumented. Flag in MinMaximize */
59 /* Obsolete ShowWindow() codes for compatibility */
60 #define HIDE_WINDOW            SW_HIDE
61 #define SHOW_OPENWINDOW        SW_SHOWNORMAL
62 #define SHOW_ICONWINDOW        SW_SHOWMINIMIZED
63 #define SHOW_FULLSCREEN        SW_SHOWMAXIMIZED
64 #define SHOW_OPENNOACTIVATE    SW_SHOWNOACTIVATE
66 /* WM_SHOWWINDOW lParam codes */
67 #define SW_PARENTCLOSING       1
68 #define SW_OTHERZOOM           2
69 #define SW_PARENTOPENING       3
70 #define SW_OTHERUNZOOM         4
73 /*** Virtual key codes ***/
74 #define VK_LBUTTON             0x01
75 #define VK_RBUTTON             0x02
76 #define VK_CANCEL              0x03
77 #define VK_MBUTTON             0x04
78 #define VK_XBUTTON1            0x05
79 #define VK_XBUTTON2            0x06
80 /*                             0x07  Undefined */
81 #define VK_BACK                0x08
82 #define VK_TAB                 0x09
83 /*                             0x0A-0x0B  Undefined */
84 #define VK_CLEAR               0x0C
85 #define VK_RETURN              0x0D
86 /*                             0x0E-0x0F  Undefined */
87 #define VK_SHIFT               0x10
88 #define VK_CONTROL             0x11
89 #define VK_MENU                0x12
90 #define VK_PAUSE               0x13
91 #define VK_CAPITAL             0x14
93 #define VK_KANA                0x15
94 #define VK_HANGEUL             VK_KANA
95 #define VK_HANGUL              VK_KANA
96 #define VK_JUNJA               0x17
97 #define VK_FINAL               0x18
98 #define VK_HANJA               0x19
99 #define VK_KANJI               VK_HANJA
101 /*                             0x1A       Undefined */
102 #define VK_ESCAPE              0x1B
104 #define VK_CONVERT             0x1C
105 #define VK_NONCONVERT          0x1D
106 #define VK_ACCEPT              0x1E
107 #define VK_MODECHANGE          0x1F
109 #define VK_SPACE               0x20
110 #define VK_PRIOR               0x21
111 #define VK_NEXT                0x22
112 #define VK_END                 0x23
113 #define VK_HOME                0x24
114 #define VK_LEFT                0x25
115 #define VK_UP                  0x26
116 #define VK_RIGHT               0x27
117 #define VK_DOWN                0x28
118 #define VK_SELECT              0x29
119 #define VK_PRINT               0x2A /* OEM specific in Windows 3.1 SDK */
120 #define VK_EXECUTE             0x2B
121 #define VK_SNAPSHOT            0x2C
122 #define VK_INSERT              0x2D
123 #define VK_DELETE              0x2E
124 #define VK_HELP                0x2F
125 /* VK_0 - VK-9                 0x30-0x39  Use ASCII instead */
126 /*                             0x3A-0x40  Undefined */
127 /* VK_A - VK_Z                 0x41-0x5A  Use ASCII instead */
128 #define VK_LWIN                0x5B
129 #define VK_RWIN                0x5C
130 #define VK_APPS                0x5D
131 /*                             0x5E Unassigned */
132 #define VK_SLEEP               0x5F
133 #define VK_NUMPAD0             0x60
134 #define VK_NUMPAD1             0x61
135 #define VK_NUMPAD2             0x62
136 #define VK_NUMPAD3             0x63
137 #define VK_NUMPAD4             0x64
138 #define VK_NUMPAD5             0x65
139 #define VK_NUMPAD6             0x66
140 #define VK_NUMPAD7             0x67
141 #define VK_NUMPAD8             0x68
142 #define VK_NUMPAD9             0x69
143 #define VK_MULTIPLY            0x6A
144 #define VK_ADD                 0x6B
145 #define VK_SEPARATOR           0x6C
146 #define VK_SUBTRACT            0x6D
147 #define VK_DECIMAL             0x6E
148 #define VK_DIVIDE              0x6F
149 #define VK_F1                  0x70
150 #define VK_F2                  0x71
151 #define VK_F3                  0x72
152 #define VK_F4                  0x73
153 #define VK_F5                  0x74
154 #define VK_F6                  0x75
155 #define VK_F7                  0x76
156 #define VK_F8                  0x77
157 #define VK_F9                  0x78
158 #define VK_F10                 0x79
159 #define VK_F11                 0x7A
160 #define VK_F12                 0x7B
161 #define VK_F13                 0x7C
162 #define VK_F14                 0x7D
163 #define VK_F15                 0x7E
164 #define VK_F16                 0x7F
165 #define VK_F17                 0x80
166 #define VK_F18                 0x81
167 #define VK_F19                 0x82
168 #define VK_F20                 0x83
169 #define VK_F21                 0x84
170 #define VK_F22                 0x85
171 #define VK_F23                 0x86
172 #define VK_F24                 0x87
173 /*                             0x88-0x8F  Unassigned */
174 #define VK_NUMLOCK             0x90
175 #define VK_SCROLL              0x91
176 #define VK_OEM_NEC_EQUAL       0x92
177 #define VK_OEM_FJ_JISHO        0x92
178 #define VK_OEM_FJ_MASSHOU      0x93
179 #define VK_OEM_FJ_TOUROKU      0x94
180 #define VK_OEM_FJ_LOYA         0x95
181 #define VK_OEM_FJ_ROYA         0x96
182 /*                             0x97-0x9F  Unassigned */
184  * differencing between right and left shift/control/alt key.
185  * Used only by GetAsyncKeyState() and GetKeyState().
186  */
187 #define VK_LSHIFT              0xA0
188 #define VK_RSHIFT              0xA1
189 #define VK_LCONTROL            0xA2
190 #define VK_RCONTROL            0xA3
191 #define VK_LMENU               0xA4
192 #define VK_RMENU               0xA5
194 #define VK_BROWSER_BACK        0xA6
195 #define VK_BROWSER_FORWARD     0xA7
196 #define VK_BROWSER_REFRESH     0xA8
197 #define VK_BROWSER_STOP        0xA9
198 #define VK_BROWSER_SEARCH      0xAA
199 #define VK_BROWSER_FAVORITES   0xAB
200 #define VK_BROWSER_HOME        0xAC
201 #define VK_VOLUME_MUTE         0xAD
202 #define VK_VOLUME_DOWN         0xAE
203 #define VK_VOLUME_UP           0xAF
204 #define VK_MEDIA_NEXT_TRACK    0xB0
205 #define VK_MEDIA_PREV_TRACK    0xB1
206 #define VK_MEDIA_STOP          0xB2
207 #define VK_MEDIA_PLAY_PAUSE    0xB3
208 #define VK_LAUNCH_MAIL         0xB4
209 #define VK_LAUNCH_MEDIA_SELECT 0xB5
210 #define VK_LAUNCH_APP1         0xB6
211 #define VK_LAUNCH_APP2         0xB7
213 /*                             0xB8-0xB9  Unassigned */
214 #define VK_OEM_1               0xBA
215 #define VK_OEM_PLUS            0xBB
216 #define VK_OEM_COMMA           0xBC
217 #define VK_OEM_MINUS           0xBD
218 #define VK_OEM_PERIOD          0xBE
219 #define VK_OEM_2               0xBF
220 #define VK_OEM_3               0xC0
221 /*                             0xC1-0xDA  Unassigned */
222 #define VK_OEM_4               0xDB
223 #define VK_OEM_5               0xDC
224 #define VK_OEM_6               0xDD
225 #define VK_OEM_7               0xDE
226 #define VK_OEM_8               0xDF
227 /*                             0xE0       OEM specific */
228 #define VK_OEM_AX              0xE1  /* "AX" key on Japanese AX keyboard */
229 #define VK_OEM_102             0xE2  /* "<>" or "\|" on RT 102-key keyboard */
230 #define VK_ICO_HELP            0xE3  /* Help key on ICO */
231 #define VK_ICO_00              0xE4  /* 00 key on ICO */
232 #define VK_PROCESSKEY          0xE5
233 #define VK_ICO_CLEAR           0xE6
235 #define VK_PACKET              0xE7
236 /*                             0xE8       Unassigned */
238 #define VK_OEM_RESET           0xE9
239 #define VK_OEM_JUMP            0xEA
240 #define VK_OEM_PA1             0xEB
241 #define VK_OEM_PA2             0xEC
242 #define VK_OEM_PA3             0xED
243 #define VK_OEM_WSCTRL          0xEE
244 #define VK_OEM_CUSEL           0xEF
245 #define VK_OEM_ATTN            0xF0
246 #define VK_OEM_FINISH          0xF1
247 #define VK_OEM_COPY            0xF2
248 #define VK_OEM_AUTO            0xF3
249 #define VK_OEM_ENLW            0xF4
250 #define VK_OEM_BACKTAB         0xF5
251 #define VK_ATTN                0xF6
252 #define VK_CRSEL               0xF7
253 #define VK_EXSEL               0xF8
254 #define VK_EREOF               0xF9
255 #define VK_PLAY                0xFA
256 #define VK_ZOOM                0xFB
257 #define VK_NONAME              0xFC
258 #define VK_PA1                 0xFD
259 #define VK_OEM_CLEAR           0xFE
260 /*                             0xFF       Unassigned */
263 /*** Messages ***/
264 #ifndef NOWINMESSAGES
265 #define WM_NULL                0x0000
266 #define WM_CREATE              0x0001
267 #define WM_DESTROY             0x0002
268 #define WM_MOVE                0x0003
269 #define WM_SIZEWAIT            0x0004 /* DDK / Win16 */
270 #define WM_SIZE                0x0005
271 #define WM_ACTIVATE            0x0006
273 /* WM_ACTIVATE wParam values */
274 #define WA_INACTIVE            0
275 #define WA_ACTIVE              1
276 #define WA_CLICKACTIVE         2
278 #define WM_SETFOCUS            0x0007
279 #define WM_KILLFOCUS           0x0008
280 #define WM_SETVISIBLE          0x0009 /* DDK / Win16 */
281 #define WM_ENABLE              0x000a
282 #define WM_SETREDRAW           0x000b
283 #define WM_SETTEXT             0x000c
284 #define WM_GETTEXT             0x000d
285 #define WM_GETTEXTLENGTH       0x000e
286 #define WM_PAINT               0x000f
287 #define WM_CLOSE               0x0010
288 #define WM_QUERYENDSESSION     0x0011
289 #define WM_QUIT                0x0012
290 #define WM_QUERYOPEN           0x0013
291 #define WM_ERASEBKGND          0x0014
292 #define WM_SYSCOLORCHANGE      0x0015
293 #define WM_ENDSESSION          0x0016
294 #define WM_SYSTEMERROR         0x0017 /* DDK / Win16 */
295 #define WM_SHOWWINDOW          0x0018
296 #define WM_CTLCOLOR            0x0019 /* Added from windowsx.h */
297 #define WM_WININICHANGE        0x001a
298 #define WM_SETTINGCHANGE       WM_WININICHANGE
299 #define WM_DEVMODECHANGE       0x001b
300 #define WM_ACTIVATEAPP         0x001c
301 #define WM_FONTCHANGE          0x001d
302 #define WM_TIMECHANGE          0x001e
303 #define WM_CANCELMODE          0x001f
304 #define WM_SETCURSOR           0x0020
305 #define WM_MOUSEACTIVATE       0x0021
306 #define WM_CHILDACTIVATE       0x0022
307 #define WM_QUEUESYNC           0x0023
308 #define WM_GETMINMAXINFO       0x0024
310 #define WM_PAINTICON           0x0026
311 #define WM_ICONERASEBKGND      0x0027
312 #define WM_NEXTDLGCTL          0x0028
313 #define WM_ALTTABACTIVE        0x0029 /* DDK / Win16 */
314 #define WM_SPOOLERSTATUS       0x002a
315 #define WM_DRAWITEM            0x002b
316 #define WM_MEASUREITEM         0x002c
317 #define WM_DELETEITEM          0x002d
318 #define WM_VKEYTOITEM          0x002e
319 #define WM_CHARTOITEM          0x002f
320 #define WM_SETFONT             0x0030
321 #define WM_GETFONT             0x0031
322 #define WM_SETHOTKEY           0x0032
323 #define WM_GETHOTKEY           0x0033
324 #define WM_FILESYSCHANGE       0x0034 /* DDK / Win16 */
325 #define WM_ISACTIVEICON        0x0035 /* DDK / Win16 */
326 #define WM_QUERYPARKICON       0x0036 /* Undocumented */
327 #define WM_QUERYDRAGICON       0x0037
328 #define WM_QUERYSAVESTATE      0x0038 /* Undocumented */
329 #define WM_COMPAREITEM         0x0039
330 #define WM_TESTING             0x003a /* DDK / Win16 */
332 #define WM_GETOBJECT           0x003d
334 #define WM_ACTIVATESHELLWINDOW 0x003e /* FIXME: Wine-only */
336 #define WM_COMPACTING          0x0041
338 #define WM_COMMNOTIFY          0x0044
339 #define WM_WINDOWPOSCHANGING   0x0046
340 #define WM_WINDOWPOSCHANGED    0x0047
342 #define WM_POWER               0x0048
344 /* For WM_POWER */
345 #define PWR_OK                 1
346 #define PWR_FAIL               (-1)
347 #define PWR_SUSPENDREQUEST     1
348 #define PWR_SUSPENDRESUME      2
349 #define PWR_CRITICALRESUME     3
351 /* Win32 4.0 messages */
352 #define WM_COPYDATA            0x004a
353 #define WM_CANCELJOURNAL       0x004b
354 #define WM_KEYF1               0x004d /* DDK / Win16 */
355 #define WM_NOTIFY              0x004e
356 #define WM_INPUTLANGCHANGEREQUEST 0x0050
357 #define WM_INPUTLANGCHANGE     0x0051
358 #define WM_TCARD               0x0052
359 #define WM_HELP                0x0053
360 #define WM_USERCHANGED         0x0054
361 #define WM_NOTIFYFORMAT        0x0055
363 /* WM_NOTIFYFORMAT commands and return values */
364 #define NFR_ANSI               1
365 #define NFR_UNICODE            2
366 #define NF_QUERY               3
367 #define NF_REQUERY             4
369 #define WM_CONTEXTMENU         0x007b
370 #define WM_STYLECHANGING       0x007c
371 #define WM_STYLECHANGED        0x007d
372 #define WM_DISPLAYCHANGE       0x007e
373 #define WM_GETICON             0x007f
374 #define WM_SETICON             0x0080
376 /* Non-client system messages */
377 #define WM_NCCREATE            0x0081
378 #define WM_NCDESTROY           0x0082
379 #define WM_NCCALCSIZE          0x0083
380 #define WM_NCHITTEST           0x0084
381 #define WM_NCPAINT             0x0085
382 #define WM_NCACTIVATE          0x0086
384 #define WM_GETDLGCODE          0x0087
385 #define WM_SYNCPAINT           0x0088
386 #define WM_SYNCTASK            0x0089 /* DDK / Win16 */
388 /* Non-client mouse messages */
389 #define WM_NCMOUSEMOVE         0x00a0
390 #define WM_NCLBUTTONDOWN       0x00a1
391 #define WM_NCLBUTTONUP         0x00a2
392 #define WM_NCLBUTTONDBLCLK     0x00a3
393 #define WM_NCRBUTTONDOWN       0x00a4
394 #define WM_NCRBUTTONUP         0x00a5
395 #define WM_NCRBUTTONDBLCLK     0x00a6
396 #define WM_NCMBUTTONDOWN       0x00a7
397 #define WM_NCMBUTTONUP         0x00a8
398 #define WM_NCMBUTTONDBLCLK     0x00a9
400 #define WM_NCXBUTTONDOWN       0x00ab
401 #define WM_NCXBUTTONUP         0x00ac
402 #define WM_NCXBUTTONDBLCLK     0x00ad
404 /* Raw input */
405 #define WM_INPUT_DEVICE_CHANGE 0x00fe
406 #define WM_INPUT               0x00ff
408 /* Keyboard messages */
409 #define WM_KEYFIRST            0x0100
410 #define WM_KEYDOWN             WM_KEYFIRST
411 #define WM_KEYUP               0x0101
412 #define WM_CHAR                0x0102
413 #define WM_DEADCHAR            0x0103
414 #define WM_SYSKEYDOWN          0x0104
415 #define WM_SYSKEYUP            0x0105
416 #define WM_SYSCHAR             0x0106
417 #define WM_SYSDEADCHAR         0x0107
418 #define WM_UNICHAR             0x0109
419 #define WM_KEYLAST             WM_UNICHAR
421 #define UNICODE_NOCHAR         0xffff
423 /* Win32 4.0 messages for IME */
424 #define WM_IME_STARTCOMPOSITION 0x010d
425 #define WM_IME_ENDCOMPOSITION  0x010e
426 #define WM_IME_COMPOSITION     0x010f
427 #define WM_IME_KEYLAST         0x010f
429 #define WM_INITDIALOG          0x0110
430 #define WM_COMMAND             0x0111
431 #define WM_SYSCOMMAND          0x0112
432 #define WM_TIMER               0x0113
434 /* Scroll messages */
435 #define WM_HSCROLL             0x0114
436 #define WM_VSCROLL             0x0115
438 /* Menu messages */
439 #define WM_INITMENU            0x0116
440 #define WM_INITMENUPOPUP       0x0117
441 #define WM_GESTURE             0x0119
442 #define WM_GESTURENOTIFY       0x011A
444 #define WM_MENUSELECT          0x011F
445 #define WM_MENUCHAR            0x0120
446 #define WM_ENTERIDLE           0x0121
448 #define WM_MENURBUTTONUP       0x0122
449 #define WM_MENUDRAG            0x0123
450 #define WM_MENUGETOBJECT       0x0124
451 #define WM_UNINITMENUPOPUP     0x0125
452 #define WM_MENUCOMMAND         0x0126
454 #define WM_CHANGEUISTATE       0x0127
455 #define WM_UPDATEUISTATE       0x0128
456 #define WM_QUERYUISTATE        0x0129
458 /* UI flags for WM_*UISTATE */
459 /* for low-order word of wparam */
460 #define UIS_SET                1
461 #define UIS_CLEAR              2
462 #define UIS_INITIALIZE         3
463 /* for hi-order word of wparam */
464 #define UISF_HIDEFOCUS         0x1
465 #define UISF_HIDEACCEL         0x2
466 #define UISF_ACTIVE            0x4
468 #define WM_LBTRACKPOINT        0x0131 /* DDK / Win16 */
470 /* Win32 CTLCOLOR messages */
471 #define WM_CTLCOLORMSGBOX      0x0132
472 #define WM_CTLCOLOREDIT        0x0133
473 #define WM_CTLCOLORLISTBOX     0x0134
474 #define WM_CTLCOLORBTN         0x0135
475 #define WM_CTLCOLORDLG         0x0136
476 #define WM_CTLCOLORSCROLLBAR   0x0137
477 #define WM_CTLCOLORSTATIC      0x0138
479 #define MN_GETHMENU            0x01E1
481 /* Mouse messages */
482 #define WM_MOUSEFIRST          0x0200
483 #define WM_MOUSEMOVE           WM_MOUSEFIRST
484 #define WM_LBUTTONDOWN         0x0201
485 #define WM_LBUTTONUP           0x0202
486 #define WM_LBUTTONDBLCLK       0x0203
487 #define WM_RBUTTONDOWN         0x0204
488 #define WM_RBUTTONUP           0x0205
489 #define WM_RBUTTONDBLCLK       0x0206
490 #define WM_MBUTTONDOWN         0x0207
491 #define WM_MBUTTONUP           0x0208
492 #define WM_MBUTTONDBLCLK       0x0209
493 #define WM_MOUSEWHEEL          0x020A
494 #define WM_XBUTTONDOWN         0x020B
495 #define WM_XBUTTONUP           0x020C
496 #define WM_XBUTTONDBLCLK       0x020D
497 #define WM_MOUSEHWHEEL         0x020E
498 #define WM_MOUSELAST           WM_MOUSEHWHEEL
500 /* Macros for the mouse messages */
501 #define WHEEL_DELTA            120
502 #define GET_WHEEL_DELTA_WPARAM(wParam) ((short)HIWORD(wParam))
503 #define WHEEL_PAGESCROLL       (UINT_MAX)
505 #define GET_KEYSTATE_WPARAM(wParam)     (LOWORD(wParam))
506 #define GET_NCHITTEST_WPARAM(wParam)    ((short)LOWORD(wParam))
507 #define GET_XBUTTON_WPARAM(wParam)      (HIWORD(wParam))
508 #define XBUTTON1               0x0001
509 #define XBUTTON2               0x0002
511 #define WM_PARENTNOTIFY        0x0210
512 #define WM_ENTERMENULOOP       0x0211
513 #define WM_EXITMENULOOP        0x0212
514 #define WM_NEXTMENU            0x0213
516 /* Win32 4.0 messages */
517 #define WM_SIZING              0x0214
518 #define WM_CAPTURECHANGED      0x0215
519 #define WM_MOVING              0x0216
520 #define WM_POWERBROADCAST      0x0218
521 #define WM_DEVICECHANGE        0x0219
522 /* MDI messages */
523 #define WM_MDICREATE           0x0220
524 #define WM_MDIDESTROY          0x0221
525 #define WM_MDIACTIVATE         0x0222
526 #define WM_MDIRESTORE          0x0223
527 #define WM_MDINEXT             0x0224
528 #define WM_MDIMAXIMIZE         0x0225
529 #define WM_MDITILE             0x0226
530 #define WM_MDICASCADE          0x0227
531 #define WM_MDIICONARRANGE      0x0228
532 #define WM_MDIGETACTIVE        0x0229
534 /* D&D messages */
535 #define WM_DROPOBJECT          0x022A /* DDK / Win16 */
536 #define WM_QUERYDROPOBJECT     0x022B /* DDK / Win16 */
537 #define WM_BEGINDRAG           0x022C /* DDK / Win16 */
538 #define WM_DRAGLOOP            0x022D /* DDK / Win16 */
539 #define WM_DRAGSELECT          0x022E /* DDK / Win16 */
540 #define WM_DRAGMOVE            0x022F /* DDK / Win16 */
542 #define WM_MDISETMENU          0x0230
543 #define WM_ENTERSIZEMOVE       0x0231
544 #define WM_EXITSIZEMOVE        0x0232
545 #define WM_DROPFILES           0x0233
546 #define WM_MDIREFRESHMENU      0x0234
548 #define WM_POINTERDEVICECHANGE     0x0238
549 #define WM_POINTERDEVICEINRANGE    0x0239
550 #define WM_POINTERDEVICEOUTOFRANGE 0x023a
552 #define WM_TOUCH               0x0240
553 #define WM_NCPOINTERUPDATE     0x0241
554 #define WM_NCPOINTERDOWN       0x0242
555 #define WM_NCPOINTERUP         0x0243
556 #define WM_POINTERUPDATE       0x0245
557 #define WM_POINTERDOWN         0x0246
558 #define WM_POINTERUP           0x0247
559 #define WM_POINTERENTER        0x0249
560 #define WM_POINTERLEAVE        0x024a
561 #define WM_POINTERACTIVATE     0x024b
562 #define WM_POINTERCAPTURECHANGED 0x024c
563 #define WM_TOUCHHITTESTING     0x024d
564 #define WM_POINTERWHEEL        0x024e
565 #define WM_POINTERHWHEEL       0x024f
567 #define WM_POINTERROUTEDTO     0x0251
568 #define WM_POINTERROUTEDAWAY   0x0252
569 #define WM_POINTERROUTEDRELEASED 0x0253
571 /* Win32 4.0 messages for IME */
572 #define WM_IME_SETCONTEXT      0x0281
573 #define WM_IME_NOTIFY          0x0282
574 #define WM_IME_CONTROL         0x0283
575 #define WM_IME_COMPOSITIONFULL 0x0284
576 #define WM_IME_SELECT          0x0285
577 #define WM_IME_CHAR            0x0286
578 /* Win32 5.0 messages for IME */
579 #define WM_IME_REQUEST         0x0288
581 /* Win32 4.0 messages for IME */
582 #define WM_IME_KEYDOWN         0x0290
583 #define WM_IME_KEYUP           0x0291
585 #define WM_NCMOUSEHOVER        0x02A0
586 #define WM_MOUSEHOVER          0x02A1
587 #define WM_MOUSELEAVE          0x02A3
588 #define WM_NCMOUSELEAVE        0x02A2
590 #define WM_WTSSESSION_CHANGE   0x02B1
592 #define WM_TABLET_FIRST        0x02c0
593 #define WM_TABLET_LAST         0x02df
595 #define WM_DPICHANGED          0x02e0
596 #define WM_DPICHANGED_BEFOREPARENT 0x02e2
597 #define WM_DPICHANGED_AFTERPARENT  0x02e3
598 #define WM_GETDPISCALEDSIZE    0x02e4
600 /* Clipboard command messages */
601 #define WM_CUT                 0x0300
602 #define WM_COPY                0x0301
603 #define WM_PASTE               0x0302
604 #define WM_CLEAR               0x0303
605 #define WM_UNDO                0x0304
607 /* Clipboard owner messages */
608 #define WM_RENDERFORMAT        0x0305
609 #define WM_RENDERALLFORMATS    0x0306
610 #define WM_DESTROYCLIPBOARD    0x0307
612 /* Clipboard viewer messages */
613 #define WM_DRAWCLIPBOARD       0x0308
614 #define WM_PAINTCLIPBOARD      0x0309
615 #define WM_VSCROLLCLIPBOARD    0x030A
616 #define WM_SIZECLIPBOARD       0x030B
617 #define WM_ASKCBFORMATNAME     0x030C
618 #define WM_CHANGECBCHAIN       0x030D
619 #define WM_HSCROLLCLIPBOARD    0x030E
621 #define WM_QUERYNEWPALETTE     0x030F
622 #define WM_PALETTEISCHANGING   0x0310
623 #define WM_PALETTECHANGED      0x0311
624 #define WM_HOTKEY              0x0312
626 #define WM_PRINT               0x0317
627 #define WM_PRINTCLIENT         0x0318
628 #define WM_APPCOMMAND          0x0319
629 #define WM_THEMECHANGED        0x031A
630 #define WM_CLIPBOARDUPDATE     0x031D
632 #define WM_DWMCOMPOSITIONCHANGED 0x031E
633 #define WM_DWMNCRENDERINGCHANGED 0x031F
634 #define WM_DWMCOLORIZATIONCOLORCHANGED 0x0320
635 #define WM_DWMWINDOWMAXIMIZEDCHANGE 0x0321
636 #define WM_DWMSENDICONICTHUMBNAIL 0x0323
637 #define WM_DWMSENDICONICLIVEPREVIEWBITMAP 0x0326
639 #define WM_GETTITLEBARINFOEX   0x033F
641 #define WM_HANDHELDFIRST       0x0358
642 #define WM_HANDHELDLAST        0x035F
644 #define WM_AFXFIRST            0x0360
645 #define WM_AFXLAST             0x037F
647 #define WM_PENWINFIRST         0x0380
648 #define WM_PENWINLAST          0x038F
650 #define WM_USER                0x0400
652 #define WM_APP                 0x8000
655 /* wParam for WM_SIZING message */
656 #define WMSZ_LEFT              1
657 #define WMSZ_RIGHT             2
658 #define WMSZ_TOP               3
659 #define WMSZ_TOPLEFT           4
660 #define WMSZ_TOPRIGHT          5
661 #define WMSZ_BOTTOM            6
662 #define WMSZ_BOTTOMLEFT        7
663 #define WMSZ_BOTTOMRIGHT       8
665 /* WM_NCHITTEST return codes */
666 #define HTERROR                (-2)
667 #define HTTRANSPARENT          (-1)
668 #define HTNOWHERE              0
669 #define HTCLIENT               1
670 #define HTCAPTION              2
671 #define HTSYSMENU              3
672 #define HTSIZE                 4
673 #define HTGROWBOX              HTSIZE
674 #define HTMENU                 5
675 #define HTHSCROLL              6
676 #define HTVSCROLL              7
677 #define HTMINBUTTON            8
678 #define HTREDUCE               HTMINBUTTON
679 #define HTMAXBUTTON            9
680 #define HTZOOM                 HTMAXBUTTON
681 #define HTLEFT                 10
682 #define HTSIZEFIRST            HTLEFT
683 #define HTRIGHT                11
684 #define HTTOP                  12
685 #define HTTOPLEFT              13
686 #define HTTOPRIGHT             14
687 #define HTBOTTOM               15
688 #define HTBOTTOMLEFT           16
689 #define HTBOTTOMRIGHT          17
690 #define HTSIZELAST             HTBOTTOMRIGHT
691 #define HTBORDER               18
692 #define HTOBJECT               19
693 #define HTCLOSE                20
694 #define HTHELP                 21
696 /* SendMessageTimeout flags */
697 #define SMTO_NORMAL            0x0000
698 #define SMTO_BLOCK             0x0001
699 #define SMTO_ABORTIFHUNG       0x0002
700 #define SMTO_NOTIMEOUTIFNOTHUNG 0x0008
701 #define SMTO_ERRORONEXIT       0x0020
703 /* WM_MOUSEACTIVATE return values */
704 #define MA_ACTIVATE            1
705 #define MA_ACTIVATEANDEAT      2
706 #define MA_NOACTIVATE          3
707 #define MA_NOACTIVATEANDEAT    4
709 /* WM_GETICON/WM_SETICON params values */
710 #define ICON_SMALL             0
711 #define ICON_BIG               1
712 #define ICON_SMALL2            2
714 /* WM_SIZE message wParam values */
715 #define SIZE_RESTORED          0
716 #define SIZE_MINIMIZED         1
717 #define SIZE_MAXIMIZED         2
718 #define SIZE_MAXSHOW           3
719 #define SIZE_MAXHIDE           4
720 #define SIZENORMAL             SIZE_RESTORED
721 #define SIZEICONIC             SIZE_MINIMIZED
722 #define SIZEFULLSCREEN         SIZE_MAXIMIZED
723 #define SIZEZOOMSHOW           SIZE_MAXSHOW
724 #define SIZEZOOMHIDE           SIZE_MAXHIDE
726 /* WM_NCCALCSIZE return flags */
727 #define WVR_ALIGNTOP           0x0010
728 #define WVR_ALIGNLEFT          0x0020
729 #define WVR_ALIGNBOTTOM        0x0040
730 #define WVR_ALIGNRIGHT         0x0080
731 #define WVR_HREDRAW            0x0100
732 #define WVR_VREDRAW            0x0200
733 #define WVR_REDRAW             (WVR_HREDRAW | WVR_VREDRAW)
734 #define WVR_VALIDRECTS         0x0400
736 /* Key status flags for mouse events */
737 #ifndef NOKEYSTATES
738 #define MK_LBUTTON             0x0001
739 #define MK_RBUTTON             0x0002
740 #define MK_SHIFT               0x0004
741 #define MK_CONTROL             0x0008
742 #define MK_MBUTTON             0x0010
743 #define MK_XBUTTON1            0x0020
744 #define MK_XBUTTON2            0x0040
745 #endif /* NOKEYSTATES */
747 #ifndef NOTRACKMOUSEEVENT
748 #define TME_HOVER              0x00000001
749 #define TME_LEAVE              0x00000002
750 #define TME_NONCLIENT          0x00000010
751 #define TME_QUERY              0x40000000
752 #define TME_CANCEL             0x80000000
753 #define HOVER_DEFAULT          0xFFFFFFFF
754 #endif /* NOTRACKMOUSEEVENT */
756 #endif /* NOWINMESSAGES */
759 /*** Window Styles ***/
760 #ifndef NOWINSTYLES
761 #define WS_OVERLAPPED          __MSABI_LONG(0x00000000)
762 #define WS_POPUP               __MSABI_LONG(0x80000000)
763 #define WS_CHILD               __MSABI_LONG(0x40000000)
764 #define WS_MINIMIZE            __MSABI_LONG(0x20000000)
765 #define WS_VISIBLE             __MSABI_LONG(0x10000000)
766 #define WS_DISABLED            __MSABI_LONG(0x08000000)
767 #define WS_CLIPSIBLINGS        __MSABI_LONG(0x04000000)
768 #define WS_CLIPCHILDREN        __MSABI_LONG(0x02000000)
769 #define WS_MAXIMIZE            __MSABI_LONG(0x01000000)
770 #define WS_BORDER              __MSABI_LONG(0x00800000)
771 #define WS_DLGFRAME            __MSABI_LONG(0x00400000)
772 #define WS_VSCROLL             __MSABI_LONG(0x00200000)
773 #define WS_HSCROLL             __MSABI_LONG(0x00100000)
774 #define WS_SYSMENU             __MSABI_LONG(0x00080000)
775 #define WS_THICKFRAME          __MSABI_LONG(0x00040000)
776 #define WS_GROUP               __MSABI_LONG(0x00020000)
777 #define WS_TABSTOP             __MSABI_LONG(0x00010000)
778 #define WS_MINIMIZEBOX         __MSABI_LONG(0x00020000)
779 #define WS_MAXIMIZEBOX         __MSABI_LONG(0x00010000)
780 #define WS_CAPTION             (WS_BORDER | WS_DLGFRAME)
781 #define WS_TILED               WS_OVERLAPPED
782 #define WS_ICONIC              WS_MINIMIZE
783 #define WS_SIZEBOX             WS_THICKFRAME
784 #define WS_OVERLAPPEDWINDOW    (WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME| WS_MINIMIZEBOX | WS_MAXIMIZEBOX)
785 #define WS_POPUPWINDOW         (WS_POPUP | WS_BORDER | WS_SYSMENU)
786 #define WS_CHILDWINDOW         WS_CHILD
787 #define WS_TILEDWINDOW         WS_OVERLAPPEDWINDOW
788 #endif /* NOWINSTYLES */
791 /*** Window extended styles ***/
792 #ifndef NOWINSTYLES
793 #define WS_EX_DLGMODALFRAME    __MSABI_LONG(0x00000001)
794 #define WS_EX_DRAGDETECT       __MSABI_LONG(0x00000002) /* Undocumented */
795 #define WS_EX_NOPARENTNOTIFY   __MSABI_LONG(0x00000004)
796 #define WS_EX_TOPMOST          __MSABI_LONG(0x00000008)
797 #define WS_EX_ACCEPTFILES      __MSABI_LONG(0x00000010)
798 #define WS_EX_TRANSPARENT      __MSABI_LONG(0x00000020)
799 #define WS_EX_MDICHILD         __MSABI_LONG(0x00000040)
800 #define WS_EX_TOOLWINDOW       __MSABI_LONG(0x00000080)
801 #define WS_EX_WINDOWEDGE       __MSABI_LONG(0x00000100)
802 #define WS_EX_CLIENTEDGE       __MSABI_LONG(0x00000200)
803 #define WS_EX_CONTEXTHELP      __MSABI_LONG(0x00000400)
804 #define WS_EX_RIGHT            __MSABI_LONG(0x00001000)
805 #define WS_EX_LEFT             __MSABI_LONG(0x00000000)
806 #define WS_EX_RTLREADING       __MSABI_LONG(0x00002000)
807 #define WS_EX_LTRREADING       __MSABI_LONG(0x00000000)
808 #define WS_EX_LEFTSCROLLBAR    __MSABI_LONG(0x00004000)
809 #define WS_EX_RIGHTSCROLLBAR   __MSABI_LONG(0x00000000)
810 #define WS_EX_CONTROLPARENT    __MSABI_LONG(0x00010000)
811 #define WS_EX_STATICEDGE       __MSABI_LONG(0x00020000)
812 #define WS_EX_APPWINDOW        __MSABI_LONG(0x00040000)
813 #define WS_EX_LAYERED          __MSABI_LONG(0x00080000)
814 #define WS_EX_NOINHERITLAYOUT  __MSABI_LONG(0x00100000)
815 #define WS_EX_LAYOUTRTL        __MSABI_LONG(0x00400000)
816 #define WS_EX_COMPOSITED       __MSABI_LONG(0x02000000)
817 #define WS_EX_NOACTIVATE       __MSABI_LONG(0x08000000)
819 #define WS_EX_OVERLAPPEDWINDOW (WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE)
820 #define WS_EX_PALETTEWINDOW    (WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST)
821 #endif /* NOWINSTYLES */
824 /*** Class styles ***/
825 #ifndef NOWINSTYLES
826 #define CS_VREDRAW             0x00000001
827 #define CS_HREDRAW             0x00000002
828 #define CS_KEYCVTWINDOW        0x00000004 /* DDK / Win16 */
829 #define CS_DBLCLKS             0x00000008
830 #define CS_OWNDC               0x00000020
831 #define CS_CLASSDC             0x00000040
832 #define CS_PARENTDC            0x00000080
833 #define CS_NOKEYCVT            0x00000100 /* DDK / Win16 */
834 #define CS_NOCLOSE             0x00000200
835 #define CS_SAVEBITS            0x00000800
836 #define CS_BYTEALIGNCLIENT     0x00001000
837 #define CS_BYTEALIGNWINDOW     0x00002000
838 #define CS_GLOBALCLASS         0x00004000
839 #define CS_IME                 0x00010000
840 #define CS_DROPSHADOW          0x00020000
841 #endif /* NOWINSTYLES */
844 /*** Predefined Clipboard Formats ***/
845 #ifndef NOCLIPBOARD
846 #define CF_TEXT                1
847 #define CF_BITMAP              2
848 #define CF_METAFILEPICT        3
849 #define CF_SYLK                4
850 #define CF_DIF                 5
851 #define CF_TIFF                6
852 #define CF_OEMTEXT             7
853 #define CF_DIB                 8
854 #define CF_PALETTE             9
855 #define CF_PENDATA             10
856 #define CF_RIFF                11
857 #define CF_WAVE                12
858 #define CF_UNICODETEXT         13
859 #define CF_ENHMETAFILE         14
860 #define CF_HDROP               15
861 #define CF_LOCALE              16
862 #define CF_DIBV5               17
863 #define CF_MAX                 18
865 #define CF_OWNERDISPLAY        0x0080
866 #define CF_DSPTEXT             0x0081
867 #define CF_DSPBITMAP           0x0082
868 #define CF_DSPMETAFILEPICT     0x0083
869 #define CF_DSPENHMETAFILE      0x008E
871 /* "Private" formats don't get GlobalFree()'d */
872 #define CF_PRIVATEFIRST        0x0200
873 #define CF_PRIVATELAST         0x02FF
875 /* "GDIOBJ" formats do get DeleteObject()'d */
876 #define CF_GDIOBJFIRST         0x0300
877 #define CF_GDIOBJLAST          0x03FF
878 #endif /* NOCLIPBOARD */
881 /*** Menu flags ***/
882 #ifndef NOMENUS
883 #define MF_INSERT              __MSABI_LONG(0x00000000)
884 #define MF_CHANGE              __MSABI_LONG(0x00000080)
885 #define MF_APPEND              __MSABI_LONG(0x00000100)
886 #define MF_DELETE              __MSABI_LONG(0x00000200)
887 #define MF_REMOVE              __MSABI_LONG(0x00001000)
888 #define MF_END                 __MSABI_LONG(0x00000080)
890 #define MF_ENABLED             __MSABI_LONG(0x00000000)
891 #define MF_GRAYED              __MSABI_LONG(0x00000001)
892 #define MF_DISABLED            __MSABI_LONG(0x00000002)
893 #define MF_STRING              __MSABI_LONG(0x00000000)
894 #define MF_BITMAP              __MSABI_LONG(0x00000004)
895 #define MF_UNCHECKED           __MSABI_LONG(0x00000000)
896 #define MF_CHECKED             __MSABI_LONG(0x00000008)
897 #define MF_POPUP               __MSABI_LONG(0x00000010)
898 #define MF_MENUBARBREAK        __MSABI_LONG(0x00000020)
899 #define MF_MENUBREAK           __MSABI_LONG(0x00000040)
900 #define MF_UNHILITE            __MSABI_LONG(0x00000000)
901 #define MF_HILITE              __MSABI_LONG(0x00000080)
902 #define MF_OWNERDRAW           __MSABI_LONG(0x00000100)
903 #define MF_USECHECKBITMAPS     __MSABI_LONG(0x00000200)
904 #define MF_BYCOMMAND           __MSABI_LONG(0x00000000)
905 #define MF_BYPOSITION          __MSABI_LONG(0x00000400)
906 #define MF_SEPARATOR           __MSABI_LONG(0x00000800)
907 #define MF_DEFAULT             __MSABI_LONG(0x00001000)
908 #define MF_SYSMENU             __MSABI_LONG(0x00002000)
909 #define MF_HELP                __MSABI_LONG(0x00004000)
910 #define MF_RIGHTJUSTIFY        __MSABI_LONG(0x00004000)
911 #define MF_MOUSESELECT         __MSABI_LONG(0x00008000)
913 /* Flags for extended menu item types */
914 #define MFT_STRING             MF_STRING
915 #define MFT_BITMAP             MF_BITMAP
916 #define MFT_MENUBARBREAK       MF_MENUBARBREAK
917 #define MFT_MENUBREAK          MF_MENUBREAK
918 #define MFT_OWNERDRAW          MF_OWNERDRAW
919 #define MFT_RADIOCHECK         __MSABI_LONG(0x00000200)
920 #define MFT_SEPARATOR          MF_SEPARATOR
921 #define MFT_RIGHTORDER         __MSABI_LONG(0x00002000)
922 #define MFT_RIGHTJUSTIFY       MF_RIGHTJUSTIFY
924 /* Flags for extended menu item states */
925 #define MFS_GRAYED             __MSABI_LONG(0x00000003)
926 #define MFS_DISABLED           MFS_GRAYED
927 #define MFS_CHECKED            MF_CHECKED
928 #define MFS_HILITE             MF_HILITE
929 #define MFS_ENABLED            MF_ENABLED
930 #define MFS_UNCHECKED          MF_UNCHECKED
931 #define MFS_UNHILITE           MF_UNHILITE
932 #define MFS_DEFAULT            MF_DEFAULT
934 /* DDK / Win16 defines */
935 #define MFS_MASK               __MSABI_LONG(0x0000108B)
936 #define MFS_HOTTRACKDRAWN      __MSABI_LONG(0x10000000)
937 #define MFS_CACHEDBMP          __MSABI_LONG(0x20000000)
938 #define MFS_BOTTOMGAPDROP      __MSABI_LONG(0x40000000)
939 #define MFS_TOPGAPDROP         __MSABI_LONG(0x80000000)
940 #define MFS_GAPDROP            (MFS_BOTTOMGAPDROP | MFS_TOPGAPDROP)
941 #endif /* NOMENUS */
944 /*** WM_SYSCOMMAND parameters ***/
945 #ifndef NOSYSCOMMANDS
946 /* At least HP-UX defines it in /usr/include/sys/signal.h */
947 # ifdef SC_SIZE
948 #  undef SC_SIZE
949 # endif
950 #define SC_SIZE                0xf000
951 #define SC_MOVE                0xf010
952 #define SC_MINIMIZE            0xf020
953 #define SC_MAXIMIZE            0xf030
954 #define SC_NEXTWINDOW          0xf040
955 #define SC_PREVWINDOW          0xf050
956 #define SC_CLOSE               0xf060
957 #define SC_VSCROLL             0xf070
958 #define SC_HSCROLL             0xf080
959 #define SC_MOUSEMENU           0xf090
960 #define SC_KEYMENU             0xf100
961 #define SC_ARRANGE             0xf110
962 #define SC_RESTORE             0xf120
963 #define SC_TASKLIST            0xf130
964 #define SC_SCREENSAVE          0xf140
965 #define SC_HOTKEY              0xf150
967 /* Win32 4.0 */
968 #define SC_DEFAULT             0xf160
969 #define SC_MONITORPOWER        0xf170
970 #define SC_CONTEXTHELP         0xf180
971 #define SC_SEPARATOR           0xf00f
973 #define GET_SC_WPARAM(wParam)  ((int)wParam & 0xfff0)
974 #define SCF_ISSECURE           0x0001
976 /* Obsolete names */
977 #define SC_ICON               SC_MINIMIZE
978 #define SC_ZOOM               SC_MAXIMIZE
979 #endif /* NOSYSCOMMANDS */
982 /*** OEM Resource Ordinal Numbers ***/
983 #ifdef OEMRESOURCE
984 #define OBM_RDRVERT            32559
985 #define OBM_RDRHORZ            32660
986 #define OBM_RDR2DIM            32661
987 #define OBM_TRTYPE             32732 /* FIXME: Wine-only */
988 #define OBM_LFARROWI           32734
989 #define OBM_RGARROWI           32735
990 #define OBM_DNARROWI           32736
991 #define OBM_UPARROWI           32737
992 #define OBM_COMBO              32738
993 #define OBM_MNARROW            32739
994 #define OBM_LFARROWD           32740
995 #define OBM_RGARROWD           32741
996 #define OBM_DNARROWD           32742
997 #define OBM_UPARROWD           32743
998 #define OBM_RESTORED           32744
999 #define OBM_ZOOMD              32745
1000 #define OBM_REDUCED            32746
1001 #define OBM_RESTORE            32747
1002 #define OBM_ZOOM               32748
1003 #define OBM_REDUCE             32749
1004 #define OBM_LFARROW            32750
1005 #define OBM_RGARROW            32751
1006 #define OBM_DNARROW            32752
1007 #define OBM_UPARROW            32753
1008 #define OBM_CLOSE              32754
1009 #define OBM_OLD_RESTORE        32755
1010 #define OBM_OLD_ZOOM           32756
1011 #define OBM_OLD_REDUCE         32757
1012 #define OBM_BTNCORNERS         32758
1013 #define OBM_CHECKBOXES         32759
1014 #define OBM_CHECK              32760
1015 #define OBM_BTSIZE             32761
1016 #define OBM_OLD_LFARROW        32762
1017 #define OBM_OLD_RGARROW        32763
1018 #define OBM_OLD_DNARROW        32764
1019 #define OBM_OLD_UPARROW        32765
1020 #define OBM_SIZE               32766
1021 #define OBM_OLD_CLOSE          32767
1023 #define OCR_NORMAL             32512
1024 #define OCR_IBEAM              32513
1025 #define OCR_WAIT               32514
1026 #define OCR_CROSS              32515
1027 #define OCR_UP                 32516
1028 #define OCR_PEN                32631
1029 #define OCR_SIZE               32640
1030 #define OCR_ICON               32641
1031 #define OCR_SIZENWSE           32642
1032 #define OCR_SIZENESW           32643
1033 #define OCR_SIZEWE             32644
1034 #define OCR_SIZENS             32645
1035 #define OCR_SIZEALL            32646
1036 #define OCR_ICOCUR             32647
1037 #define OCR_NO                 32648
1038 #define OCR_HAND               32649
1039 #define OCR_APPSTARTING        32650
1040 #define OCR_HELP               32651 /* DDK / Win16 */
1041 #define OCR_RDRVERT            32652 /* DDK / Win16 */
1042 #define OCR_RDRHORZ            32653 /* DDK / Win16 */
1043 #define OCR_RDR2DIM            32654 /* DDK / Win16 */
1044 #define OCR_RDRNORTH           32655 /* DDK / Win16 */
1045 #define OCR_RDRSOUTH           32656 /* DDK / Win16 */
1046 #define OCR_RDRWEST            32657 /* DDK / Win16 */
1047 #define OCR_RDREAST            32658 /* DDK / Win16 */
1048 #define OCR_RDRNORTHWEST       32659 /* DDK / Win16 */
1049 #define OCR_RDRNORTHEAST       32660 /* DDK / Win16 */
1050 #define OCR_RDRSOUTHWEST       32661 /* DDK / Win16 */
1051 #define OCR_RDRSOUTHEAST       32662 /* DDK / Win16 */
1053 #define OIC_SAMPLE             32512
1054 #define OIC_HAND               32513
1055 #define OIC_ERROR              OIC_HAND
1056 #define OIC_QUES               32514
1057 #define OIC_BANG               32515
1058 #define OIC_WARNING            OIC_BANG
1059 #define OIC_NOTE               32516
1060 #define OIC_INFORMATION        OIC_NOTE
1061 #define OIC_WINLOGO            32517
1062 #define OIC_SHIELD             32518
1063 #endif /* OEMRESOURCE */
1066 /*** Predefined resources ***/
1067 #ifndef NOICONS
1068 #define IDI_APPLICATION        MAKEINTRESOURCE(32512)
1069 #define IDI_HAND               MAKEINTRESOURCE(32513)
1070 #define IDI_QUESTION           MAKEINTRESOURCE(32514)
1071 #define IDI_EXCLAMATION        MAKEINTRESOURCE(32515)
1072 #define IDI_ASTERISK           MAKEINTRESOURCE(32516)
1073 #define IDI_WINLOGO            MAKEINTRESOURCE(32517)
1074 #define IDI_SHIELD             MAKEINTRESOURCE(32518)
1076 #define IDI_WARNING            IDI_EXCLAMATION
1077 #define IDI_ERROR              IDI_HAND
1078 #define IDI_INFORMATION        IDI_ASTERISK
1079 #endif /* NOICONS */
1082 /*** Standard dialog button IDs ***/
1083 #define IDOK                   1
1084 #define IDCANCEL               2
1085 #define IDABORT                3
1086 #define IDRETRY                4
1087 #define IDIGNORE               5
1088 #define IDYES                  6
1089 #define IDNO                   7
1090 #define IDCLOSE                8
1091 #define IDHELP                 9
1092 #define IDTRYAGAIN             10
1093 #define IDCONTINUE             11
1094 #ifndef IDTIMEOUT
1095 #define IDTIMEOUT              32000
1096 #endif
1099 /*** Edit control styles ***/
1100 #ifndef NOWINSTYLES
1101 #define ES_LEFT                __MSABI_LONG(0x00000000)
1102 #define ES_CENTER              __MSABI_LONG(0x00000001)
1103 #define ES_RIGHT               __MSABI_LONG(0x00000002)
1104 #define ES_MULTILINE           __MSABI_LONG(0x00000004)
1105 #define ES_UPPERCASE           __MSABI_LONG(0x00000008)
1106 #define ES_LOWERCASE           __MSABI_LONG(0x00000010)
1107 #define ES_PASSWORD            __MSABI_LONG(0x00000020)
1108 #define ES_AUTOVSCROLL         __MSABI_LONG(0x00000040)
1109 #define ES_AUTOHSCROLL         __MSABI_LONG(0x00000080)
1110 #define ES_NOHIDESEL           __MSABI_LONG(0x00000100)
1111 #define ES_COMBO               __MSABI_LONG(0x00000200) /* Undocumented. Parent is a combobox */
1112 #define ES_OEMCONVERT          __MSABI_LONG(0x00000400)
1113 #define ES_READONLY            __MSABI_LONG(0x00000800)
1114 #define ES_WANTRETURN          __MSABI_LONG(0x00001000)
1115 #define ES_NUMBER              __MSABI_LONG(0x00002000)
1116 #endif /* NOWINSTYLES */
1119 /*** Edit control messages ***/
1120 #ifndef NOWINMESSAGES
1121 #define EM_GETSEL              0x00b0
1122 #define EM_SETSEL              0x00b1
1123 #define EM_GETRECT             0x00b2
1124 #define EM_SETRECT             0x00b3
1125 #define EM_SETRECTNP           0x00b4
1126 #define EM_SCROLL              0x00b5
1127 #define EM_LINESCROLL          0x00b6
1128 #define EM_SCROLLCARET         0x00b7
1129 #define EM_GETMODIFY           0x00b8
1130 #define EM_SETMODIFY           0x00b9
1131 #define EM_GETLINECOUNT        0x00ba
1132 #define EM_LINEINDEX           0x00bb
1133 #define EM_SETHANDLE           0x00bc
1134 #define EM_GETHANDLE           0x00bd
1135 #define EM_GETTHUMB            0x00be
1136 /* Unassigned 0x00bf and 0x00c0 */
1137 #define EM_LINELENGTH          0x00c1
1138 #define EM_REPLACESEL          0x00c2
1139 #define EM_SETFONT             0x00c3 /* DDK / Win16 */
1140 #define EM_GETLINE             0x00c4
1141 #define EM_LIMITTEXT           0x00c5
1142 #define EM_SETLIMITTEXT        EM_LIMITTEXT
1143 #define EM_CANUNDO             0x00c6
1144 #define EM_UNDO                0x00c7
1145 #define EM_FMTLINES            0x00c8
1146 #define EM_LINEFROMCHAR        0x00c9
1147 #define EM_SETWORDBREAK        0x00ca /* DDK / Win16 */
1148 #define EM_SETTABSTOPS         0x00cb
1149 #define EM_SETPASSWORDCHAR     0x00cc
1150 #define EM_EMPTYUNDOBUFFER     0x00cd
1151 #define EM_GETFIRSTVISIBLELINE 0x00ce
1152 #define EM_SETREADONLY         0x00cf
1153 #define EM_SETWORDBREAKPROC    0x00d0
1154 #define EM_GETWORDBREAKPROC    0x00d1
1155 #define EM_GETPASSWORDCHAR     0x00d2
1156 #define EM_SETMARGINS          0x00d3
1157 #define EM_GETMARGINS          0x00d4
1158 #define EM_GETLIMITTEXT        0x00d5
1159 #define EM_POSFROMCHAR         0x00d6
1160 #define EM_CHARFROMPOS         0x00d7
1161 #define EM_SETIMESTATUS        0x00d8
1162 #define EM_GETIMESTATUS        0x00d9
1163 #endif /* NOWINMESSAGES */
1166 /*** Button control styles ***/
1167 #define BS_PUSHBUTTON          __MSABI_LONG(0x00000000)
1168 #define BS_DEFPUSHBUTTON       __MSABI_LONG(0x00000001)
1169 #define BS_CHECKBOX            __MSABI_LONG(0x00000002)
1170 #define BS_AUTOCHECKBOX        __MSABI_LONG(0x00000003)
1171 #define BS_RADIOBUTTON         __MSABI_LONG(0x00000004)
1172 #define BS_3STATE              __MSABI_LONG(0x00000005)
1173 #define BS_AUTO3STATE          __MSABI_LONG(0x00000006)
1174 #define BS_GROUPBOX            __MSABI_LONG(0x00000007)
1175 #define BS_USERBUTTON          __MSABI_LONG(0x00000008)
1176 #define BS_AUTORADIOBUTTON     __MSABI_LONG(0x00000009)
1177 #define BS_PUSHBOX             __MSABI_LONG(0x0000000A)
1178 #define BS_OWNERDRAW           __MSABI_LONG(0x0000000B)
1179 #define BS_TYPEMASK            __MSABI_LONG(0x0000000F)
1180 #define BS_LEFTTEXT            __MSABI_LONG(0x00000020)
1181 #define BS_RIGHTBUTTON         BS_LEFTTEXT
1183 #define BS_TEXT                __MSABI_LONG(0x00000000)
1184 #define BS_ICON                __MSABI_LONG(0x00000040)
1185 #define BS_BITMAP              __MSABI_LONG(0x00000080)
1186 #define BS_LEFT                __MSABI_LONG(0x00000100)
1187 #define BS_RIGHT               __MSABI_LONG(0x00000200)
1188 #define BS_CENTER              __MSABI_LONG(0x00000300)
1189 #define BS_TOP                 __MSABI_LONG(0x00000400)
1190 #define BS_BOTTOM              __MSABI_LONG(0x00000800)
1191 #define BS_VCENTER             __MSABI_LONG(0x00000C00)
1192 #define BS_PUSHLIKE            __MSABI_LONG(0x00001000)
1193 #define BS_MULTILINE           __MSABI_LONG(0x00002000)
1194 #define BS_NOTIFY              __MSABI_LONG(0x00004000)
1195 #define BS_FLAT                __MSABI_LONG(0x00008000)
1198 /*** Button notification codes ***/
1199 #define BN_CLICKED             0
1200 #define BN_PAINT               1
1201 #define BN_HILITE              2
1202 #define BN_PUSHED              BN_HILITE
1203 #define BN_UNHILITE            3
1204 #define BN_UNPUSHED            BN_UNHILITE
1205 #define BN_DISABLE             4
1206 #define BN_DOUBLECLICKED       5
1207 #define BN_DBLCLK              BN_DOUBLECLICKED
1208 #define BN_SETFOCUS            6
1209 #define BN_KILLFOCUS           7
1212 /*** Win32 button control messages ***/
1213 #define BM_GETCHECK            0x00f0
1214 #define BM_SETCHECK            0x00f1
1215 #define BM_GETSTATE            0x00f2
1216 #define BM_SETSTATE            0x00f3
1217 #define BM_SETSTYLE            0x00f4
1218 #define BM_CLICK               0x00f5
1219 #define BM_GETIMAGE            0x00f6
1220 #define BM_SETIMAGE            0x00f7
1221 #define BM_SETDONTCLICK        0x00f8
1223 /* Button states */
1224 #define BST_UNCHECKED          0x0000
1225 #define BST_CHECKED            0x0001
1226 #define BST_INDETERMINATE      0x0002
1227 #define BST_PUSHED             0x0004
1228 #define BST_FOCUS              0x0008
1230 /*** Static Control Styles ***/
1231 #define SS_LEFT                __MSABI_LONG(0x00000000)
1232 #define SS_CENTER              __MSABI_LONG(0x00000001)
1233 #define SS_RIGHT               __MSABI_LONG(0x00000002)
1234 #define SS_ICON                __MSABI_LONG(0x00000003)
1235 #define SS_BLACKRECT           __MSABI_LONG(0x00000004)
1236 #define SS_GRAYRECT            __MSABI_LONG(0x00000005)
1237 #define SS_WHITERECT           __MSABI_LONG(0x00000006)
1238 #define SS_BLACKFRAME          __MSABI_LONG(0x00000007)
1239 #define SS_GRAYFRAME           __MSABI_LONG(0x00000008)
1240 #define SS_WHITEFRAME          __MSABI_LONG(0x00000009)
1241 #define SS_USERITEM            __MSABI_LONG(0x0000000A)
1242 #define SS_SIMPLE              __MSABI_LONG(0x0000000B)
1243 #define SS_LEFTNOWORDWRAP      __MSABI_LONG(0x0000000C)
1244 #define SS_OWNERDRAW           __MSABI_LONG(0x0000000D)
1245 #define SS_BITMAP              __MSABI_LONG(0x0000000E)
1246 #define SS_ENHMETAFILE         __MSABI_LONG(0x0000000F)
1247 #define SS_ETCHEDHORZ          __MSABI_LONG(0x00000010)
1248 #define SS_ETCHEDVERT          __MSABI_LONG(0x00000011)
1249 #define SS_ETCHEDFRAME         __MSABI_LONG(0x00000012)
1250 #define SS_TYPEMASK            __MSABI_LONG(0x0000001F)
1252 #define SS_REALSIZECONTROL     __MSABI_LONG(0x00000040)
1253 #define SS_NOPREFIX            __MSABI_LONG(0x00000080)
1254 #define SS_NOTIFY              __MSABI_LONG(0x00000100)
1255 #define SS_CENTERIMAGE         __MSABI_LONG(0x00000200)
1256 #define SS_RIGHTJUST           __MSABI_LONG(0x00000400)
1257 #define SS_REALSIZEIMAGE       __MSABI_LONG(0x00000800)
1258 #define SS_SUNKEN              __MSABI_LONG(0x00001000)
1259 #define SS_EDITCONTROL         __MSABI_LONG(0x00002000)
1260 #define SS_ENDELLIPSIS         __MSABI_LONG(0x00004000)
1261 #define SS_PATHELLIPSIS        __MSABI_LONG(0x00008000)
1262 #define SS_WORDELLIPSIS        __MSABI_LONG(0x0000C000)
1263 #define SS_ELLIPSISMASK        SS_WORDELLIPSIS
1266 /*** Dialog styles ***/
1267 #define DS_ABSALIGN            __MSABI_LONG(0x00000001)
1268 #define DS_SYSMODAL            __MSABI_LONG(0x00000002)
1269 #define DS_3DLOOK              __MSABI_LONG(0x00000004) /* win95 */
1270 #define DS_FIXEDSYS            __MSABI_LONG(0x00000008) /* win95 */
1271 #define DS_NOFAILCREATE        __MSABI_LONG(0x00000010) /* win95 */
1272 #define DS_LOCALEDIT           __MSABI_LONG(0x00000020)
1273 #define DS_SETFONT             __MSABI_LONG(0x00000040)
1274 #define DS_MODALFRAME          __MSABI_LONG(0x00000080)
1275 #define DS_NOIDLEMSG           __MSABI_LONG(0x00000100)
1276 #define DS_SETFOREGROUND       __MSABI_LONG(0x00000200) /* win95 */
1277 #define DS_CONTROL             __MSABI_LONG(0x00000400) /* win95 */
1278 #define DS_CENTER              __MSABI_LONG(0x00000800) /* win95 */
1279 #define DS_CENTERMOUSE         __MSABI_LONG(0x00001000) /* win95 */
1280 #define DS_CONTEXTHELP         __MSABI_LONG(0x00002000) /* win95 */
1281 #define DS_USEPIXELS           __MSABI_LONG(0x00008000)
1282 #define DS_SHELLFONT           (DS_SETFONT | DS_FIXEDSYS)
1285 /*** Listbox styles ***/
1286 #ifndef NOWINSTYLES
1287 #define LBS_NOTIFY             __MSABI_LONG(0x00000001)
1288 #define LBS_SORT               __MSABI_LONG(0x00000002)
1289 #define LBS_NOREDRAW           __MSABI_LONG(0x00000004)
1290 #define LBS_MULTIPLESEL        __MSABI_LONG(0x00000008)
1291 #define LBS_OWNERDRAWFIXED     __MSABI_LONG(0x00000010)
1292 #define LBS_OWNERDRAWVARIABLE  __MSABI_LONG(0x00000020)
1293 #define LBS_HASSTRINGS         __MSABI_LONG(0x00000040)
1294 #define LBS_USETABSTOPS        __MSABI_LONG(0x00000080)
1295 #define LBS_NOINTEGRALHEIGHT   __MSABI_LONG(0x00000100)
1296 #define LBS_MULTICOLUMN        __MSABI_LONG(0x00000200)
1297 #define LBS_WANTKEYBOARDINPUT  __MSABI_LONG(0x00000400)
1298 #define LBS_EXTENDEDSEL        __MSABI_LONG(0x00000800)
1299 #define LBS_DISABLENOSCROLL    __MSABI_LONG(0x00001000)
1300 #define LBS_NODATA             __MSABI_LONG(0x00002000)
1301 #define LBS_NOSEL              __MSABI_LONG(0x00004000)
1302 #define LBS_COMBOBOX           __MSABI_LONG(0x00008000)
1303 #define LBS_STANDARD           (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER)
1304 #endif /* NOWINSTYLES */
1306 /*** Combo box styles ***/
1307 #ifndef NOWINSTYLES
1308 #define CBS_SIMPLE             __MSABI_LONG(0x00000001)
1309 #define CBS_DROPDOWN           __MSABI_LONG(0x00000002)
1310 #define CBS_DROPDOWNLIST       __MSABI_LONG(0x00000003)
1311 #define CBS_OWNERDRAWFIXED     __MSABI_LONG(0x00000010)
1312 #define CBS_OWNERDRAWVARIABLE  __MSABI_LONG(0x00000020)
1313 #define CBS_AUTOHSCROLL        __MSABI_LONG(0x00000040)
1314 #define CBS_OEMCONVERT         __MSABI_LONG(0x00000080)
1315 #define CBS_SORT               __MSABI_LONG(0x00000100)
1316 #define CBS_HASSTRINGS         __MSABI_LONG(0x00000200)
1317 #define CBS_NOINTEGRALHEIGHT   __MSABI_LONG(0x00000400)
1318 #define CBS_DISABLENOSCROLL    __MSABI_LONG(0x00000800)
1320 #define CBS_UPPERCASE          __MSABI_LONG(0x00002000)
1321 #define CBS_LOWERCASE          __MSABI_LONG(0x00004000)
1322 #endif /* NOWINSTYLES */
1325 /*** Scrollbar styles ***/
1326 #ifndef NOWINSTYLES
1327 #define SBS_HORZ               __MSABI_LONG(0x00000000)
1328 #define SBS_VERT               __MSABI_LONG(0x00000001)
1329 #define SBS_TOPALIGN           __MSABI_LONG(0x00000002)
1330 #define SBS_LEFTALIGN          __MSABI_LONG(0x00000002)
1331 #define SBS_BOTTOMALIGN        __MSABI_LONG(0x00000004)
1332 #define SBS_RIGHTALIGN         __MSABI_LONG(0x00000004)
1333 #define SBS_SIZEBOXTOPLEFTALIGN __MSABI_LONG(0x00000002)
1334 #define SBS_SIZEBOXBOTTOMRIGHTALIGN __MSABI_LONG(0x00000004)
1335 #define SBS_SIZEBOX            __MSABI_LONG(0x00000008)
1336 #define SBS_SIZEGRIP           __MSABI_LONG(0x00000010)
1337 #endif /* NOWINSTYLES */
1339 /*** WinHelp commands ***/
1340 #define HELP_CONTEXT           __MSABI_LONG(0x00000001)
1341 #define HELP_QUIT              __MSABI_LONG(0x00000002)
1342 #define HELP_INDEX             __MSABI_LONG(0x00000003)
1343 #define HELP_CONTENTS          HELP_INDEX
1344 #define HELP_HELPONHELP        __MSABI_LONG(0x00000004)
1345 #define HELP_SETINDEX          __MSABI_LONG(0x00000005)
1346 #define HELP_SETCONTENTS       HELP_SETINDEX
1347 #define HELP_CONTEXTPOPUP      __MSABI_LONG(0x00000008)
1348 #define HELP_FORCEFILE         __MSABI_LONG(0x00000009)
1349 #define HELP_KEY               __MSABI_LONG(0x00000101)
1350 #define HELP_COMMAND           __MSABI_LONG(0x00000102)
1351 #define HELP_PARTIALKEY        __MSABI_LONG(0x00000105)
1352 #define HELP_MULTIKEY          __MSABI_LONG(0x00000201)
1353 #define HELP_SETWINPOS         __MSABI_LONG(0x00000203)
1355 #define HELP_CONTEXTMENU       0x000a
1356 #define HELP_FINDER            0x000b
1357 #define HELP_WM_HELP           0x000c
1358 #define HELP_SETPOPUP_POS      0x000d
1359 #define HELP_TCARD_DATA        0x0010
1360 #define HELP_TCARD_OTHER_CALLER 0x0011
1361 #define HELP_TCARD             0x8000
1363 #define IDH_NO_HELP            28440
1364 #define IDH_MISSING_CONTEXT    28441
1365 #define IDH_GENERIC_HELP_BUTTON 28442
1366 #define IDH_OK                 28443
1367 #define IDH_CANCEL             28444
1368 #define IDH_HELP               28445