index == 3 corresponds to Alt-Gr + Shift.
[wine] / include / winuser.h
1 #ifndef __INCLUDE_WINUSER_H
2 #define __INCLUDE_WINUSER_H
3
4 #ifndef RC_INVOKED
5 #include <stdarg.h>
6 #endif
7 #include "windef.h"
8 #include "wingdi.h"
9 #include "wine/winestring.h"
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 #pragma pack(1)
16
17 /* flags for HIGHCONTRAST dwFlags field */
18 #define HCF_HIGHCONTRASTON  0x00000001
19 #define HCF_AVAILABLE       0x00000002
20 #define HCF_HOTKEYACTIVE    0x00000004
21 #define HCF_CONFIRMHOTKEY   0x00000008
22 #define HCF_HOTKEYSOUND     0x00000010
23 #define HCF_INDICATOR       0x00000020
24 #define HCF_HOTKEYAVAILABLE 0x00000040
25
26 typedef struct tagHIGHCONTRASTA
27 {
28     UINT  cbSize;
29     DWORD   dwFlags;
30     LPSTR   lpszDefaultScheme;
31 } HIGHCONTRASTA, *LPHIGHCONTRASTA;
32
33 typedef struct tagHIGHCONTRASTW
34 {
35     UINT  cbSize;
36     DWORD   dwFlags;
37     LPWSTR  lpszDefaultScheme;
38 } HIGHCONTRASTW, *LPHIGHCONTRASTW;
39
40 DECL_WINELIB_TYPE_AW(HIGHCONTRAST)
41 DECL_WINELIB_TYPE_AW(LPHIGHCONTRAST)
42
43 typedef struct
44 {
45     UINT  message;
46     UINT  paramL;
47     UINT  paramH;
48     DWORD   time;
49     HWND  hwnd;
50 } EVENTMSG, *LPEVENTMSG;
51
52
53     /* Mouse hook structure */
54
55 typedef struct
56 {
57     POINT pt;
58     HWND  hwnd;
59     UINT  wHitTestCode;
60     DWORD   dwExtraInfo;
61 } MOUSEHOOKSTRUCT, *PMOUSEHOOKSTRUCT, *LPMOUSEHOOKSTRUCT;
62
63
64     /* Hardware hook structure */
65
66 typedef struct
67 {
68     HWND    hWnd;
69     UINT    wMessage;
70     WPARAM  wParam;
71     LPARAM    lParam;
72 } HARDWAREHOOKSTRUCT, *LPHARDWAREHOOKSTRUCT;
73
74
75   /* Debug hook structure */
76
77 typedef struct
78 {
79     DWORD       idThread;
80     DWORD       idThreadInstaller;
81     LPARAM      lParam;
82     WPARAM    wParam;
83     INT       code;
84 } DEBUGHOOKINFO, *LPDEBUGHOOKINFO;
85
86 #define HKL_PREV   0
87 #define HKL_NEXT   1
88
89 #define KLF_ACTIVATE       0x00000001
90 #define KLF_SUBSTITUTE_OK  0x00000002
91 #define KLF_UNLOADPREVIOUS 0x00000004
92 #define KLF_REORDER        0x00000008
93 #define KLF_REPLACELANG    0x00000010
94 #define KLF_NOTELLSHELL    0x00000080
95
96 #define KL_NAMELENGTH      9
97
98   /***** Dialogs *****/
99 #ifdef FSHIFT
100 /* Gcc on Solaris has a version of this that we don't care about.  */
101 #undef FSHIFT
102 #endif
103
104 #define FVIRTKEY        TRUE          /* Assumed to be == TRUE */
105 #define FNOINVERT       0x02
106 #define FSHIFT          0x04
107 #define FCONTROL        0x08
108 #define FALT            0x10
109
110
111 typedef struct tagANIMATIONINFO
112 {
113        UINT          cbSize;
114        INT           iMinAnimate;
115 } ANIMATIONINFO, *LPANIMATIONINFO;
116
117 typedef struct tagNMHDR
118 {
119     HWND  hwndFrom;
120     UINT  idFrom;
121     UINT  code;
122 } NMHDR, *LPNMHDR;
123
124 typedef struct
125 {
126         UINT    cbSize;
127         INT     iTabLength;
128         INT     iLeftMargin;
129         INT     iRightMargin;
130         UINT    uiLengthDrawn;
131 } DRAWTEXTPARAMS,*LPDRAWTEXTPARAMS;
132
133 #define WM_USER             0x0400
134
135 #define DT_EDITCONTROL      0x00002000
136 #define DT_PATH_ELLIPSIS    0x00004000
137 #define DT_END_ELLIPSIS     0x00008000
138 #define DT_MODIFYSTRING     0x00010000
139 #define DT_RTLREADING       0x00020000
140 #define DT_WORD_ELLIPSIS    0x00040000
141
142 typedef struct
143 {
144    LPARAM   lParam;
145    WPARAM16 wParam;
146    UINT16   message;
147    HWND16   hwnd;
148 } CWPSTRUCT16, *LPCWPSTRUCT16;
149
150 typedef struct
151 {
152   LPARAM        lParam;
153   WPARAM      wParam;
154   UINT        message;
155   HWND        hwnd;
156 } CWPSTRUCT, *LPCWPSTRUCT;
157
158
159
160 typedef struct
161 {
162   LRESULT       lResult;
163   LPARAM        lParam;
164   WPARAM16      wParam;
165   DWORD         message;
166   HWND16        hwnd;
167 } CWPRETSTRUCT16, *LPCWPRETSTRUCT16;
168
169 typedef struct
170 {
171   LRESULT       lResult;
172   LPARAM        lParam;
173   WPARAM      wParam;
174   DWORD         message;
175   HWND        hwnd;
176 } CWPRETSTRUCT, *LPCWPRETSTRUCT;
177
178 typedef struct
179 {
180     UINT   length;
181     UINT   flags;
182     UINT   showCmd;
183     POINT  ptMinPosition WINE_PACKED;
184     POINT  ptMaxPosition WINE_PACKED;
185     RECT   rcNormalPosition WINE_PACKED;
186 } WINDOWPLACEMENT, *LPWINDOWPLACEMENT;
187
188
189   /* WINDOWPLACEMENT flags */
190 #define WPF_SETMINPOSITION      0x0001
191 #define WPF_RESTORETOMAXIMIZED  0x0002
192
193 /***** Dialogs *****/
194
195   /* cbWndExtra bytes for dialog class */
196 #define DLGWINDOWEXTRA      30
197
198 /* Button control styles */
199 #define BS_PUSHBUTTON          0x00000000L
200 #define BS_DEFPUSHBUTTON       0x00000001L
201 #define BS_CHECKBOX            0x00000002L
202 #define BS_AUTOCHECKBOX        0x00000003L
203 #define BS_RADIOBUTTON         0x00000004L
204 #define BS_3STATE              0x00000005L
205 #define BS_AUTO3STATE          0x00000006L
206 #define BS_GROUPBOX            0x00000007L
207 #define BS_USERBUTTON          0x00000008L
208 #define BS_AUTORADIOBUTTON     0x00000009L
209 #define BS_OWNERDRAW           0x0000000BL
210 #define BS_LEFTTEXT            0x00000020L
211 #define BS_ICON                0x00000040L
212 #define BS_BITMAP              0x00000080L
213
214 #define BS_LEFT                0x00000100L
215 #define BS_PUSHLIKE            0x00001000L
216 #define BS_MULTILINE           0x00002000L
217 #define BS_NOTIFY              0x00004000L
218 #define BS_FLAT                0x00008000L
219
220 /* Button control messages */
221
222 #define BST_UNCHECKED      0x0000
223 #define BST_CHECKED        0x0001
224 #define BST_INDETERMINATE  0x0002
225 #define BST_PUSHED         0x0004
226 #define BST_FOCUS          0x0008
227
228   /* Dialog styles */
229 #define DS_ABSALIGN             0x0001
230 #define DS_SYSMODAL             0x0002
231 #define DS_3DLOOK               0x0004  /* win95 */
232 #define DS_FIXEDSYS             0x0008  /* win95 */
233 #define DS_NOFAILCREATE         0x0010  /* win95 */
234 #define DS_LOCALEDIT            0x0020
235 #define DS_SETFONT              0x0040
236 #define DS_MODALFRAME           0x0080
237 #define DS_NOIDLEMSG            0x0100
238 #define DS_SETFOREGROUND        0x0200  /* win95 */
239 #define DS_CONTROL              0x0400  /* win95 */
240 #define DS_CENTER               0x0800  /* win95 */
241 #define DS_CENTERMOUSE          0x1000  /* win95 */
242 #define DS_CONTEXTHELP          0x2000  /* win95 */
243
244
245   /* Dialog messages */
246 #define DM_GETDEFID         (WM_USER+0)
247 #define DM_SETDEFID         (WM_USER+1)
248
249 #define DC_HASDEFID         0x534b
250
251 /* Owner draw control types */
252 #define ODT_MENU        1
253 #define ODT_LISTBOX     2
254 #define ODT_COMBOBOX    3
255 #define ODT_BUTTON      4
256
257 /* Owner draw actions */
258 #define ODA_DRAWENTIRE  0x0001
259 #define ODA_SELECT      0x0002
260 #define ODA_FOCUS       0x0004
261
262 /* Owner draw state */
263 #define ODS_SELECTED    0x0001
264 #define ODS_GRAYED      0x0002
265 #define ODS_DISABLED    0x0004
266 #define ODS_CHECKED     0x0008
267 #define ODS_FOCUS       0x0010
268
269 /* Edit control styles */
270 #define ES_LEFT         0x00000000
271 #define ES_CENTER       0x00000001
272 #define ES_RIGHT        0x00000002
273 #define ES_MULTILINE    0x00000004
274 #define ES_UPPERCASE    0x00000008
275 #define ES_LOWERCASE    0x00000010
276 #define ES_PASSWORD     0x00000020
277 #define ES_AUTOVSCROLL  0x00000040
278 #define ES_AUTOHSCROLL  0x00000080
279 #define ES_NOHIDESEL    0x00000100
280 #define ES_OEMCONVERT   0x00000400
281 #define ES_READONLY     0x00000800
282 #define ES_WANTRETURN   0x00001000
283 #define ES_NUMBER       0x00002000
284
285 /* OEM Resource Ordinal Numbers */
286 #define OBM_CLOSED          32731
287 #define OBM_RADIOCHECK      32732
288 #define OBM_TRTYPE          32733
289 #define OBM_LFARROWI        32734
290 #define OBM_RGARROWI        32735
291 #define OBM_DNARROWI        32736
292 #define OBM_UPARROWI        32737
293 #define OBM_COMBO           32738
294 #define OBM_MNARROW         32739
295 #define OBM_LFARROWD        32740
296 #define OBM_RGARROWD        32741
297 #define OBM_DNARROWD        32742
298 #define OBM_UPARROWD        32743
299 #define OBM_RESTORED        32744
300 #define OBM_ZOOMD           32745
301 #define OBM_REDUCED         32746
302 #define OBM_RESTORE         32747
303 #define OBM_ZOOM            32748
304 #define OBM_REDUCE          32749
305 #define OBM_LFARROW         32750
306 #define OBM_RGARROW         32751
307 #define OBM_DNARROW         32752
308 #define OBM_UPARROW         32753
309 #define OBM_CLOSE           32754
310 #define OBM_OLD_RESTORE     32755
311 #define OBM_OLD_ZOOM        32756
312 #define OBM_OLD_REDUCE      32757
313 #define OBM_BTNCORNERS      32758
314 #define OBM_CHECKBOXES      32759
315 #define OBM_CHECK           32760
316 #define OBM_BTSIZE          32761
317 #define OBM_OLD_LFARROW     32762
318 #define OBM_OLD_RGARROW     32763
319 #define OBM_OLD_DNARROW     32764
320 #define OBM_OLD_UPARROW     32765
321 #define OBM_SIZE            32766
322 #define OBM_OLD_CLOSE       32767
323
324 #define OCR_BUMMER          100
325 #define OCR_DRAGOBJECT      101
326
327 #define OCR_NORMAL          32512
328 #define OCR_IBEAM           32513
329 #define OCR_WAIT            32514
330 #define OCR_CROSS           32515
331 #define OCR_UP              32516
332 #define OCR_SIZE            32640
333 #define OCR_ICON            32641
334 #define OCR_SIZENWSE        32642
335 #define OCR_SIZENESW        32643
336 #define OCR_SIZEWE          32644
337 #define OCR_SIZENS          32645
338 #define OCR_SIZEALL         32646
339 #define OCR_ICOCUR          32647
340 #define OCR_NO              32648
341 #define OCR_APPSTARTING     32650
342 #define OCR_HELP            32651  /* only defined in wine */
343
344 #define OIC_SAMPLE          32512
345 #define OIC_HAND            32513
346 #define OIC_QUES            32514
347 #define OIC_BANG            32515
348 #define OIC_NOTE            32516
349 #define OIC_PORTRAIT        32517
350 #define OIC_LANDSCAPE       32518
351 #define OIC_WINEICON        32519
352 #define OIC_FOLDER          32520
353 #define OIC_FOLDER2         32521
354 #define OIC_FLOPPY          32522
355 #define OIC_CDROM           32523
356 #define OIC_HDISK           32524
357 #define OIC_NETWORK         32525
358
359 /* Edit control messages */
360 #define EM_GETSEL                0x00b0
361 #define EM_SETSEL                0x00b1
362 #define EM_GETRECT               0x00b2
363 #define EM_SETRECT               0x00b3
364 #define EM_SETRECTNP             0x00b4
365 #define EM_SCROLL                0x00b5
366 #define EM_LINESCROLL            0x00b6
367 #define EM_SCROLLCARET           0x00b7
368 #define EM_GETMODIFY             0x00b8
369 #define EM_SETMODIFY             0x00b9
370 #define EM_GETLINECOUNT          0x00ba
371 #define EM_LINEINDEX             0x00bb
372 #define EM_SETHANDLE             0x00bc
373 #define EM_GETHANDLE             0x00bd
374 #define EM_GETTHUMB              0x00be
375 /* FIXME : missing from specs 0x00bf and 0x00c0 */
376 #define EM_LINELENGTH            0x00c1
377 #define EM_REPLACESEL            0x00c2
378 /* FIXME : missing from specs 0x00c3 */
379 #define EM_GETLINE               0x00c4
380 #define EM_LIMITTEXT             0x00c5
381 #define EM_CANUNDO               0x00c6
382 #define EM_UNDO                  0x00c7
383 #define EM_FMTLINES              0x00c8
384 #define EM_LINEFROMCHAR          0x00c9
385 /* FIXME : missing from specs 0x00ca */
386 #define EM_SETTABSTOPS           0x00cb
387 #define EM_SETPASSWORDCHAR       0x00cc
388 #define EM_EMPTYUNDOBUFFER       0x00cd
389 #define EM_GETFIRSTVISIBLELINE   0x00ce
390 #define EM_SETREADONLY           0x00cf
391 #define EM_SETWORDBREAKPROC      0x00d0
392 #define EM_GETWORDBREAKPROC      0x00d1
393 #define EM_GETPASSWORDCHAR       0x00d2
394 #define EM_SETMARGINS            0x00d3
395 #define EM_GETMARGINS            0x00d4
396 #define EM_GETLIMITTEXT          0x00d5
397 #define EM_POSFROMCHAR           0x00d6
398 #define EM_CHARFROMPOS           0x00d7
399 /* a name change since win95 */
400 #define EM_SETLIMITTEXT          EM_LIMITTEXT
401
402 /* EDITWORDBREAKPROC code values */
403 #define WB_LEFT         0
404 #define WB_RIGHT        1
405 #define WB_ISDELIMITER  2
406
407 /* Edit control notification codes */
408 #define EN_SETFOCUS     0x0100
409 #define EN_KILLFOCUS    0x0200
410 #define EN_CHANGE       0x0300
411 #define EN_UPDATE       0x0400
412 #define EN_ERRSPACE     0x0500
413 #define EN_MAXTEXT      0x0501
414 #define EN_HSCROLL      0x0601
415 #define EN_VSCROLL      0x0602
416
417 /* New since win95 : EM_SETMARGIN parameters */
418 #define EC_LEFTMARGIN   0x0001
419 #define EC_RIGHTMARGIN  0x0002
420 #define EC_USEFONTINFO  0xffff
421
422
423 /* Messages */
424
425   /* WM_GETDLGCODE values */
426
427
428 #define WM_NULL                 0x0000
429 #define WM_CREATE               0x0001
430 #define WM_DESTROY              0x0002
431 #define WM_MOVE                 0x0003
432 #define WM_SIZEWAIT             0x0004
433 #define WM_SIZE                 0x0005
434 #define WM_ACTIVATE             0x0006
435 #define WM_SETFOCUS             0x0007
436 #define WM_KILLFOCUS            0x0008
437 #define WM_SETVISIBLE           0x0009
438 #define WM_ENABLE               0x000a
439 #define WM_SETREDRAW            0x000b
440 #define WM_SETTEXT              0x000c
441 #define WM_GETTEXT              0x000d
442 #define WM_GETTEXTLENGTH        0x000e
443 #define WM_PAINT                0x000f
444 #define WM_CLOSE                0x0010
445 #define WM_QUERYENDSESSION      0x0011
446 #define WM_QUIT                 0x0012
447 #define WM_QUERYOPEN            0x0013
448 #define WM_ERASEBKGND           0x0014
449 #define WM_SYSCOLORCHANGE       0x0015
450 #define WM_ENDSESSION           0x0016
451 #define WM_SYSTEMERROR          0x0017
452 #define WM_SHOWWINDOW           0x0018
453 #define WM_CTLCOLOR             0x0019
454 #define WM_WININICHANGE         0x001a
455 #define WM_SETTINGCHANGE        WM_WININICHANGE
456 #define WM_DEVMODECHANGE        0x001b
457 #define WM_ACTIVATEAPP          0x001c
458 #define WM_FONTCHANGE           0x001d
459 #define WM_TIMECHANGE           0x001e
460 #define WM_CANCELMODE           0x001f
461 #define WM_SETCURSOR            0x0020
462 #define WM_MOUSEACTIVATE        0x0021
463 #define WM_CHILDACTIVATE        0x0022
464 #define WM_QUEUESYNC            0x0023
465 #define WM_GETMINMAXINFO        0x0024
466
467 #define WM_PAINTICON            0x0026
468 #define WM_ICONERASEBKGND       0x0027
469 #define WM_NEXTDLGCTL           0x0028
470 #define WM_ALTTABACTIVE         0x0029
471 #define WM_SPOOLERSTATUS        0x002a
472 #define WM_DRAWITEM             0x002b
473 #define WM_MEASUREITEM          0x002c
474 #define WM_DELETEITEM           0x002d
475 #define WM_VKEYTOITEM           0x002e
476 #define WM_CHARTOITEM           0x002f
477 #define WM_SETFONT              0x0030
478 #define WM_GETFONT              0x0031
479 #define WM_SETHOTKEY            0x0032
480 #define WM_GETHOTKEY            0x0033
481 #define WM_FILESYSCHANGE        0x0034
482 #define WM_ISACTIVEICON         0x0035
483 #define WM_QUERYPARKICON        0x0036
484 #define WM_QUERYDRAGICON        0x0037
485 #define WM_QUERYSAVESTATE       0x0038
486 #define WM_COMPAREITEM          0x0039
487 #define WM_TESTING              0x003a
488
489 #define WM_OTHERWINDOWCREATED   0x003c
490 #define WM_OTHERWINDOWDESTROYED 0x003d
491 #define WM_ACTIVATESHELLWINDOW  0x003e
492
493 #define WM_COMPACTING           0x0041
494
495 #define WM_COMMNOTIFY           0x0044
496 #define WM_WINDOWPOSCHANGING    0x0046
497 #define WM_WINDOWPOSCHANGED     0x0047
498 #define WM_POWER                0x0048
499
500   /* Win32 4.0 messages */
501 #define WM_COPYDATA             0x004a
502 #define WM_CANCELJOURNAL        0x004b
503 #define WM_NOTIFY               0x004e
504 #define WM_HELP                 0x0053
505 #define WM_NOTIFYFORMAT         0x0055
506
507 #define WM_CONTEXTMENU          0x007b
508 #define WM_STYLECHANGING        0x007c
509 #define WM_STYLECHANGED         0x007d
510 #define WM_DISPLAYCHANGE        0x007e
511 #define WM_GETICON              0x007f
512 #define WM_SETICON              0x0080
513
514   /* Non-client system messages */
515 #define WM_NCCREATE         0x0081
516 #define WM_NCDESTROY        0x0082
517 #define WM_NCCALCSIZE       0x0083
518 #define WM_NCHITTEST        0x0084
519 #define WM_NCPAINT          0x0085
520 #define WM_NCACTIVATE       0x0086
521
522 #define WM_GETDLGCODE       0x0087
523 #define WM_SYNCPAINT        0x0088
524 #define WM_SYNCTASK         0x0089
525
526   /* Non-client mouse messages */
527 #define WM_NCMOUSEMOVE      0x00a0
528 #define WM_NCLBUTTONDOWN    0x00a1
529 #define WM_NCLBUTTONUP      0x00a2
530 #define WM_NCLBUTTONDBLCLK  0x00a3
531 #define WM_NCRBUTTONDOWN    0x00a4
532 #define WM_NCRBUTTONUP      0x00a5
533 #define WM_NCRBUTTONDBLCLK  0x00a6
534 #define WM_NCMBUTTONDOWN    0x00a7
535 #define WM_NCMBUTTONUP      0x00a8
536 #define WM_NCMBUTTONDBLCLK  0x00a9
537
538   /* Keyboard messages */
539 #define WM_KEYDOWN          0x0100
540 #define WM_KEYUP            0x0101
541 #define WM_CHAR             0x0102
542 #define WM_DEADCHAR         0x0103
543 #define WM_SYSKEYDOWN       0x0104
544 #define WM_SYSKEYUP         0x0105
545 #define WM_SYSCHAR          0x0106
546 #define WM_SYSDEADCHAR      0x0107
547 #define WM_KEYFIRST         WM_KEYDOWN
548 #define WM_KEYLAST          0x0108
549
550 #define WM_INITDIALOG       0x0110 
551 #define WM_COMMAND          0x0111
552 #define WM_SYSCOMMAND       0x0112
553 #define WM_TIMER            0x0113
554 #define WM_SYSTIMER         0x0118
555
556   /* scroll messages */
557 #define WM_HSCROLL          0x0114
558 #define WM_VSCROLL          0x0115
559
560 /* Menu messages */
561 #define WM_INITMENU         0x0116
562 #define WM_INITMENUPOPUP    0x0117
563
564 #define WM_MENUSELECT       0x011F
565 #define WM_MENUCHAR         0x0120
566 #define WM_ENTERIDLE        0x0121
567
568 #define WM_LBTRACKPOINT     0x0131
569
570   /* Win32 CTLCOLOR messages */
571 #define WM_CTLCOLORMSGBOX    0x0132
572 #define WM_CTLCOLOREDIT      0x0133
573 #define WM_CTLCOLORLISTBOX   0x0134
574 #define WM_CTLCOLORBTN       0x0135
575 #define WM_CTLCOLORDLG       0x0136
576 #define WM_CTLCOLORSCROLLBAR 0x0137
577 #define WM_CTLCOLORSTATIC    0x0138
578
579   /* Mouse messages */
580 #define WM_MOUSEMOVE        0x0200
581 #define WM_LBUTTONDOWN      0x0201
582 #define WM_LBUTTONUP        0x0202
583 #define WM_LBUTTONDBLCLK    0x0203
584 #define WM_RBUTTONDOWN      0x0204
585 #define WM_RBUTTONUP        0x0205
586 #define WM_RBUTTONDBLCLK    0x0206
587 #define WM_MBUTTONDOWN      0x0207
588 #define WM_MBUTTONUP        0x0208
589 #define WM_MBUTTONDBLCLK    0x0209
590 #define WM_MOUSEFIRST       WM_MOUSEMOVE
591 #define WM_MOUSELAST        WM_MBUTTONDBLCLK
592
593 #define WM_PARENTNOTIFY     0x0210
594 #define WM_ENTERMENULOOP    0x0211
595 #define WM_EXITMENULOOP     0x0212
596 #define WM_NEXTMENU         0x0213
597
598   /* Win32 4.0 messages */
599 #define WM_SIZING           0x0214
600 #define WM_CAPTURECHANGED   0x0215
601 #define WM_MOVING           0x0216
602
603   /* MDI messages */
604 #define WM_MDICREATE        0x0220
605 #define WM_MDIDESTROY       0x0221
606 #define WM_MDIACTIVATE      0x0222
607 #define WM_MDIRESTORE       0x0223
608 #define WM_MDINEXT          0x0224
609 #define WM_MDIMAXIMIZE      0x0225
610 #define WM_MDITILE          0x0226
611 #define WM_MDICASCADE       0x0227
612 #define WM_MDIICONARRANGE   0x0228
613 #define WM_MDIGETACTIVE     0x0229
614 #define WM_MDIREFRESHMENU   0x0234
615
616   /* D&D messages */
617 #define WM_DROPOBJECT       0x022A
618 #define WM_QUERYDROPOBJECT  0x022B
619 #define WM_BEGINDRAG        0x022C
620 #define WM_DRAGLOOP         0x022D
621 #define WM_DRAGSELECT       0x022E
622 #define WM_DRAGMOVE         0x022F
623 #define WM_MDISETMENU       0x0230
624
625 #define WM_ENTERSIZEMOVE    0x0231
626 #define WM_EXITSIZEMOVE     0x0232
627 #define WM_DROPFILES        0x0233
628
629 #define WM_CUT               0x0300
630 #define WM_COPY              0x0301
631 #define WM_PASTE             0x0302
632 #define WM_CLEAR             0x0303
633 #define WM_UNDO              0x0304
634 #define WM_RENDERFORMAT      0x0305
635 #define WM_RENDERALLFORMATS  0x0306
636 #define WM_DESTROYCLIPBOARD  0x0307
637 #define WM_DRAWCLIPBOARD     0x0308
638 #define WM_PAINTCLIPBOARD    0x0309
639 #define WM_VSCROLLCLIPBOARD  0x030A
640 #define WM_SIZECLIPBOARD     0x030B
641 #define WM_ASKCBFORMATNAME   0x030C
642 #define WM_CHANGECBCHAIN     0x030D
643 #define WM_HSCROLLCLIPBOARD  0x030E
644 #define WM_QUERYNEWPALETTE   0x030F
645 #define WM_PALETTEISCHANGING 0x0310
646 #define WM_PALETTECHANGED    0x0311
647 #define WM_HOTKEY            0x0312
648
649 #define WM_PRINT             0x0317
650 #define WM_PRINTCLIENT       0x0318
651
652   /* FIXME: This does not belong to any libwine interface header */
653   /* MFC messages [360-38f] */
654
655 #define WM_QUERYAFXWNDPROC  0x0360
656 #define WM_SIZEPARENT       0x0361
657 #define WM_SETMESSAGESTRING 0x0362
658 #define WM_IDLEUPDATECMDUI  0x0363 
659 #define WM_INITIALUPDATE    0x0364
660 #define WM_COMMANDHELP      0x0365
661 #define WM_HELPHITTEST      0x0366
662 #define WM_EXITHELPMODE     0x0367
663 #define WM_RECALCPARENT     0x0368
664 #define WM_SIZECHILD        0x0369
665 #define WM_KICKIDLE         0x036A 
666 #define WM_QUERYCENTERWND   0x036B
667 #define WM_DISABLEMODAL     0x036C
668 #define WM_FLOATSTATUS      0x036D 
669 #define WM_ACTIVATETOPLEVEL 0x036E 
670 #define WM_QUERY3DCONTROLS  0x036F 
671 #define WM_SOCKET_NOTIFY    0x0373
672 #define WM_SOCKET_DEAD      0x0374
673 #define WM_POPMESSAGESTRING 0x0375
674 #define WM_OCC_LOADFROMSTREAM           0x0376
675 #define WM_OCC_LOADFROMSTORAGE          0x0377
676 #define WM_OCC_INITNEW                  0x0378
677 #define WM_OCC_LOADFROMSTREAM_EX        0x037A
678 #define WM_OCC_LOADFROMSTORAGE_EX       0x037B
679 #define WM_QUEUE_SENTINEL   0x0379
680
681 #define WM_PENWINFIRST      0x0380
682 #define WM_PENWINLAST       0x038F
683
684 /* end of MFC messages */
685
686   /* FIXME: This does not belong to any libwine interface header */
687 #define WM_COALESCE_FIRST    0x0390
688 #define WM_COALESCE_LAST     0x039F
689
690
691
692 #define DLGC_WANTARROWS      0x0001
693 #define DLGC_WANTTAB         0x0002
694 #define DLGC_WANTALLKEYS     0x0004
695 #define DLGC_WANTMESSAGE     0x0004
696 #define DLGC_HASSETSEL       0x0008
697 #define DLGC_DEFPUSHBUTTON   0x0010
698 #define DLGC_UNDEFPUSHBUTTON 0x0020
699 #define DLGC_RADIOBUTTON     0x0040
700 #define DLGC_WANTCHARS       0x0080
701 #define DLGC_STATIC          0x0100
702 #define DLGC_BUTTON          0x2000
703
704 /* Standard dialog button IDs */
705 #define IDOK                1
706 #define IDCANCEL            2
707 #define IDABORT             3
708 #define IDRETRY             4
709 #define IDIGNORE            5
710 #define IDYES               6
711 #define IDNO                7
712 #define IDCLOSE             8
713 #define IDHELP              9      
714
715 /****** Window classes ******/
716
717 typedef struct tagCREATESTRUCTA
718 {
719     LPVOID      lpCreateParams;
720     HINSTANCE hInstance;
721     HMENU     hMenu;
722     HWND      hwndParent;
723     INT       cy;
724     INT       cx;
725     INT       y;
726     INT       x;
727     LONG        style;
728     LPCSTR      lpszName;
729     LPCSTR      lpszClass;
730     DWORD       dwExStyle;
731 } CREATESTRUCTA, *LPCREATESTRUCTA;
732
733 typedef struct
734 {
735     LPVOID      lpCreateParams;
736     HINSTANCE hInstance;
737     HMENU     hMenu;
738     HWND      hwndParent;
739     INT       cy;
740     INT       cx;
741     INT       y;
742     INT       x;
743     LONG        style;
744     LPCWSTR     lpszName;
745     LPCWSTR     lpszClass;
746     DWORD       dwExStyle;
747 } CREATESTRUCTW, *LPCREATESTRUCTW;
748
749 DECL_WINELIB_TYPE_AW(CREATESTRUCT)
750 DECL_WINELIB_TYPE_AW(LPCREATESTRUCT)
751
752 typedef struct 
753 {
754     HMENU   hWindowMenu;
755     UINT    idFirstChild;
756 } CLIENTCREATESTRUCT, *LPCLIENTCREATESTRUCT;
757
758
759 typedef struct
760 {
761     LPCSTR       szClass;
762     LPCSTR       szTitle;
763     HINSTANCE  hOwner;
764     INT        x;
765     INT        y;
766     INT        cx;
767     INT        cy;
768     DWORD        style;
769     LPARAM       lParam;
770 } MDICREATESTRUCTA, *LPMDICREATESTRUCTA;
771
772 typedef struct
773 {
774     LPCWSTR      szClass;
775     LPCWSTR      szTitle;
776     HINSTANCE  hOwner;
777     INT        x;
778     INT        y;
779     INT        cx;
780     INT        cy;
781     DWORD        style;
782     LPARAM       lParam;
783 } MDICREATESTRUCTW, *LPMDICREATESTRUCTW;
784
785 DECL_WINELIB_TYPE_AW(MDICREATESTRUCT)
786 DECL_WINELIB_TYPE_AW(LPMDICREATESTRUCT)
787
788 #define MDITILE_VERTICAL     0x0000   
789 #define MDITILE_HORIZONTAL   0x0001
790 #define MDITILE_SKIPDISABLED 0x0002
791
792 #define MDIS_ALLCHILDSTYLES  0x0001
793
794 typedef struct {
795     DWORD   styleOld;
796     DWORD   styleNew;
797 } STYLESTRUCT, *LPSTYLESTRUCT;
798
799   /* Offsets for GetWindowLong() and GetWindowWord() */
800 #define GWL_USERDATA        (-21)
801 #define GWL_EXSTYLE         (-20)
802 #define GWL_STYLE           (-16)
803 #define GWW_ID              (-12)
804 #define GWL_ID              GWW_ID
805 #define GWW_HWNDPARENT      (-8)
806 #define GWL_HWNDPARENT      GWW_HWNDPARENT
807 #define GWW_HINSTANCE       (-6)
808 #define GWL_HINSTANCE       GWW_HINSTANCE
809 #define GWL_WNDPROC         (-4)
810 #define DWL_MSGRESULT       0
811 #define DWL_DLGPROC         4
812 #define DWL_USER            8
813
814   /* GetWindow() constants */
815 #define GW_HWNDFIRST    0
816 #define GW_HWNDLAST     1
817 #define GW_HWNDNEXT     2
818 #define GW_HWNDPREV     3
819 #define GW_OWNER        4
820 #define GW_CHILD        5
821
822   /* WM_GETMINMAXINFO struct */
823 typedef struct
824 {
825     POINT   ptReserved;
826     POINT   ptMaxSize;
827     POINT   ptMaxPosition;
828     POINT   ptMinTrackSize;
829     POINT   ptMaxTrackSize;
830 } MINMAXINFO, *PMINMAXINFO, *LPMINMAXINFO;
831
832
833   /* RedrawWindow() flags */
834 #define RDW_INVALIDATE       0x0001
835 #define RDW_INTERNALPAINT    0x0002
836 #define RDW_ERASE            0x0004
837 #define RDW_VALIDATE         0x0008
838 #define RDW_NOINTERNALPAINT  0x0010
839 #define RDW_NOERASE          0x0020
840 #define RDW_NOCHILDREN       0x0040
841 #define RDW_ALLCHILDREN      0x0080
842 #define RDW_UPDATENOW        0x0100
843 #define RDW_ERASENOW         0x0200
844 #define RDW_FRAME            0x0400
845 #define RDW_NOFRAME          0x0800
846
847 /* debug flags */
848 #define DBGFILL_ALLOC  0xfd
849 #define DBGFILL_FREE   0xfb
850 #define DBGFILL_BUFFER 0xf9
851 #define DBGFILL_STACK  0xf7
852
853   /* WM_WINDOWPOSCHANGING/CHANGED struct */
854 typedef struct tagWINDOWPOS
855 {
856     HWND  hwnd;
857     HWND  hwndInsertAfter;
858     INT   x;
859     INT   y;
860     INT   cx;
861     INT   cy;
862     UINT  flags;
863 } WINDOWPOS, *PWINDOWPOS, *LPWINDOWPOS;
864
865
866   /* WM_MOUSEACTIVATE return values */
867 #define MA_ACTIVATE             1
868 #define MA_ACTIVATEANDEAT       2
869 #define MA_NOACTIVATE           3
870 #define MA_NOACTIVATEANDEAT     4
871
872   /* WM_ACTIVATE wParam values */
873 #define WA_INACTIVE             0
874 #define WA_ACTIVE               1
875 #define WA_CLICKACTIVE          2
876
877   /* WM_NCCALCSIZE parameter structure */
878 typedef struct
879 {
880     RECT       rgrc[3];
881     WINDOWPOS *lppos;
882 } NCCALCSIZE_PARAMS, *LPNCCALCSIZE_PARAMS;
883
884
885   /* WM_NCCALCSIZE return flags */
886 #define WVR_ALIGNTOP        0x0010
887 #define WVR_ALIGNLEFT       0x0020
888 #define WVR_ALIGNBOTTOM     0x0040
889 #define WVR_ALIGNRIGHT      0x0080
890 #define WVR_HREDRAW         0x0100
891 #define WVR_VREDRAW         0x0200
892 #define WVR_REDRAW          (WVR_HREDRAW | WVR_VREDRAW)
893 #define WVR_VALIDRECTS      0x0400
894
895   /* WM_NCHITTEST return codes */
896 #define HTERROR             (-2)
897 #define HTTRANSPARENT       (-1)
898 #define HTNOWHERE           0
899 #define HTCLIENT            1
900 #define HTCAPTION           2
901 #define HTSYSMENU           3
902 #define HTSIZE              4
903 #define HTMENU              5
904 #define HTHSCROLL           6
905 #define HTVSCROLL           7
906 #define HTMINBUTTON         8
907 #define HTMAXBUTTON         9
908 #define HTLEFT              10
909 #define HTRIGHT             11
910 #define HTTOP               12
911 #define HTTOPLEFT           13
912 #define HTTOPRIGHT          14
913 #define HTBOTTOM            15
914 #define HTBOTTOMLEFT        16
915 #define HTBOTTOMRIGHT       17
916 #define HTBORDER            18
917 #define HTGROWBOX           HTSIZE
918 #define HTREDUCE            HTMINBUTTON
919 #define HTZOOM              HTMAXBUTTON
920 #define HTOBJECT            19
921 #define HTCLOSE             20
922 #define HTHELP              21
923 #define HTSIZEFIRST         HTLEFT
924 #define HTSIZELAST          HTBOTTOMRIGHT
925
926   /* WM_SYSCOMMAND parameters */
927 #ifdef SC_SIZE /* at least HP-UX: already defined in /usr/include/sys/signal.h */
928 #undef SC_SIZE
929 #endif
930 #define SC_SIZE         0xf000
931 #define SC_MOVE         0xf010
932 #define SC_MINIMIZE     0xf020
933 #define SC_MAXIMIZE     0xf030
934 #define SC_NEXTWINDOW   0xf040
935 #define SC_PREVWINDOW   0xf050
936 #define SC_CLOSE        0xf060
937 #define SC_VSCROLL      0xf070
938 #define SC_HSCROLL      0xf080
939 #define SC_MOUSEMENU    0xf090
940 #define SC_KEYMENU      0xf100
941 #define SC_ARRANGE      0xf110
942 #define SC_RESTORE      0xf120
943 #define SC_TASKLIST     0xf130
944 #define SC_SCREENSAVE   0xf140
945 #define SC_HOTKEY       0xf150
946
947 #define CS_VREDRAW          0x0001
948 #define CS_HREDRAW          0x0002
949 #define CS_KEYCVTWINDOW     0x0004
950 #define CS_DBLCLKS          0x0008
951 #define CS_OWNDC            0x0020
952 #define CS_CLASSDC          0x0040
953 #define CS_PARENTDC         0x0080
954 #define CS_NOKEYCVT         0x0100
955 #define CS_NOCLOSE          0x0200
956 #define CS_SAVEBITS         0x0800
957 #define CS_BYTEALIGNCLIENT  0x1000
958 #define CS_BYTEALIGNWINDOW  0x2000
959 #define CS_GLOBALCLASS      0x4000
960
961 #define PRF_CHECKVISIBLE    0x00000001L
962 #define PRF_NONCLIENT       0x00000002L
963 #define PRF_CLIENT          0x00000004L
964 #define PRF_ERASEBKGND      0x00000008L
965 #define PRF_CHILDREN        0x00000010L
966 #define PRF_OWNED           0x00000020L
967  
968   /* Offsets for GetClassLong() and GetClassWord() */
969 #define GCL_MENUNAME        (-8)
970 #define GCW_HBRBACKGROUND   (-10)
971 #define GCL_HBRBACKGROUND   GCW_HBRBACKGROUND
972 #define GCW_HCURSOR         (-12)
973 #define GCL_HCURSOR         GCW_HCURSOR
974 #define GCW_HICON           (-14)
975 #define GCL_HICON           GCW_HICON
976 #define GCW_HMODULE         (-16)
977 #define GCL_HMODULE         GCW_HMODULE
978 #define GCW_CBWNDEXTRA      (-18)
979 #define GCL_CBWNDEXTRA      GCW_CBWNDEXTRA
980 #define GCW_CBCLSEXTRA      (-20)
981 #define GCL_CBCLSEXTRA      GCW_CBCLSEXTRA
982 #define GCL_WNDPROC         (-24)
983 #define GCW_STYLE           (-26)
984 #define GCL_STYLE           GCW_STYLE
985 #define GCW_ATOM            (-32)
986 #define GCW_HICONSM         (-34)
987 #define GCL_HICONSM         GCW_HICONSM
988
989 #ifndef NOWINOFFSETS
990 #define GCW_HBRBACKGROUND (-10)
991 #endif
992
993
994 /***** Window hooks *****/
995
996   /* Hook values */
997 #define WH_MIN              (-1)
998 #define WH_MSGFILTER        (-1)
999 #define WH_JOURNALRECORD    0
1000 #define WH_JOURNALPLAYBACK  1
1001 #define WH_KEYBOARD         2
1002 #define WH_GETMESSAGE       3
1003 #define WH_CALLWNDPROC      4
1004 #define WH_CBT              5
1005 #define WH_SYSMSGFILTER     6
1006 #define WH_MOUSE            7
1007 #define WH_HARDWARE         8
1008 #define WH_DEBUG            9
1009 #define WH_SHELL            10
1010 #define WH_FOREGROUNDIDLE   11
1011 #define WH_CALLWNDPROCRET   12
1012 #define WH_MAX              12
1013
1014 #define WH_MINHOOK          WH_MIN
1015 #define WH_MAXHOOK          WH_MAX
1016 #define WH_NB_HOOKS         (WH_MAXHOOK-WH_MINHOOK+1)
1017
1018   /* Hook action codes */
1019 #define HC_ACTION           0
1020 #define HC_GETNEXT          1
1021 #define HC_SKIP             2
1022 #define HC_NOREMOVE         3
1023 #define HC_NOREM            HC_NOREMOVE
1024 #define HC_SYSMODALON       4
1025 #define HC_SYSMODALOFF      5
1026
1027   /* CallMsgFilter() values */
1028 #define MSGF_DIALOGBOX      0
1029 #define MSGF_MESSAGEBOX     1
1030 #define MSGF_MENU           2
1031 #define MSGF_MOVE           3
1032 #define MSGF_SIZE           4
1033 #define MSGF_SCROLLBAR      5
1034 #define MSGF_NEXTWINDOW     6
1035 #define MSGF_MAINLOOP       8
1036 #define MSGF_USER        4096
1037
1038 typedef struct
1039 {
1040     UINT      style;
1041     WNDPROC   lpfnWndProc;
1042     INT       cbClsExtra;
1043     INT       cbWndExtra;
1044     HINSTANCE hInstance;
1045     HICON     hIcon;
1046     HCURSOR   hCursor;
1047     HBRUSH    hbrBackground;
1048     LPCSTR      lpszMenuName;
1049     LPCSTR      lpszClassName;
1050 } WNDCLASSA, *LPWNDCLASSA;
1051
1052 typedef struct
1053 {
1054     UINT      style;
1055     WNDPROC   lpfnWndProc;
1056     INT       cbClsExtra;
1057     INT       cbWndExtra;
1058     HINSTANCE hInstance;
1059     HICON     hIcon;
1060     HCURSOR   hCursor;
1061     HBRUSH    hbrBackground;
1062     LPCWSTR     lpszMenuName;
1063     LPCWSTR     lpszClassName;
1064 } WNDCLASSW, *LPWNDCLASSW;
1065
1066 DECL_WINELIB_TYPE_AW(WNDCLASS)
1067 DECL_WINELIB_TYPE_AW(LPWNDCLASS)
1068
1069 typedef struct {
1070     DWORD dwData;
1071     DWORD cbData;
1072     LPVOID lpData;
1073 } COPYDATASTRUCT, *PCOPYDATASTRUCT, *LPCOPYDATASTRUCT;
1074
1075 typedef struct {
1076     HMENU hmenuIn;
1077     HMENU hmenuNext;
1078     HWND  hwndNext;
1079 } MDINEXTMENU, *PMDINEXTMENU, *LPMDINEXTMENU;
1080
1081 /* WinHelp internal structure */
1082 typedef struct {
1083         WORD size;
1084         WORD command;
1085         LONG data;
1086         LONG reserved;
1087         WORD ofsFilename;
1088         WORD ofsData;
1089 } WINHELP,*LPWINHELP;
1090
1091 typedef struct
1092 {
1093     UINT16  mkSize;
1094     BYTE    mkKeyList;
1095     BYTE    szKeyPhrase[1];
1096 } MULTIKEYHELP, *LPMULTIKEYHELP;
1097
1098 typedef struct {
1099         WORD wStructSize;
1100         WORD x;
1101         WORD y;
1102         WORD dx;
1103         WORD dy;
1104         WORD wMax;
1105         char rgchMember[2];
1106 } HELPWININFO, *LPHELPWININFO;
1107
1108 #define HELP_CONTEXT        0x0001
1109 #define HELP_QUIT           0x0002
1110 #define HELP_INDEX          0x0003
1111 #define HELP_CONTENTS       0x0003
1112 #define HELP_HELPONHELP     0x0004
1113 #define HELP_SETINDEX       0x0005
1114 #define HELP_SETCONTENTS    0x0005
1115 #define HELP_CONTEXTPOPUP   0x0008
1116 #define HELP_FORCEFILE      0x0009
1117 #define HELP_KEY            0x0101
1118 #define HELP_COMMAND        0x0102
1119 #define HELP_PARTIALKEY     0x0105
1120 #define HELP_MULTIKEY       0x0201
1121 #define HELP_SETWINPOS      0x0203
1122 #define HELP_CONTEXTMENU    0x000a
1123 #define HELP_FINDER         0x000b
1124 #define HELP_WM_HELP        0x000c
1125 #define HELP_SETPOPUP_POS   0x000d
1126
1127 #define HELP_TCARD          0x8000
1128 #define HELP_TCARD_DATA     0x0010
1129 #define HELP_TCARD_OTHER_CALLER 0x0011
1130
1131
1132      /* ChangeDisplaySettings return codes */
1133
1134 #define DISP_CHANGE_SUCCESSFUL 0
1135 #define DISP_CHANGE_RESTART    1
1136 #define DISP_CHANGE_FAILED     (-1)
1137 #define DISP_CHANGE_BADMODE    (-2)
1138 #define DISP_CHANGE_NOTUPDATED (-3)
1139 #define DISP_CHANGE_BADFLAGS   (-4)
1140
1141 /* flags to FormatMessage */
1142 #define FORMAT_MESSAGE_ALLOCATE_BUFFER  0x00000100
1143 #define FORMAT_MESSAGE_IGNORE_INSERTS   0x00000200
1144 #define FORMAT_MESSAGE_FROM_STRING      0x00000400
1145 #define FORMAT_MESSAGE_FROM_HMODULE     0x00000800
1146 #define FORMAT_MESSAGE_FROM_SYSTEM      0x00001000
1147 #define FORMAT_MESSAGE_ARGUMENT_ARRAY   0x00002000
1148 #define FORMAT_MESSAGE_MAX_WIDTH_MASK   0x000000FF
1149
1150 typedef struct
1151 {
1152     UINT      cbSize;
1153     UINT      style;
1154     WNDPROC   lpfnWndProc;
1155     INT       cbClsExtra;
1156     INT       cbWndExtra;
1157     HINSTANCE hInstance;
1158     HICON     hIcon;
1159     HCURSOR   hCursor;
1160     HBRUSH    hbrBackground;
1161     LPCSTR      lpszMenuName;
1162     LPCSTR      lpszClassName;
1163     HICON     hIconSm;
1164 } WNDCLASSEXA, *LPWNDCLASSEXA;
1165
1166 typedef struct
1167 {
1168     UINT      cbSize;
1169     UINT      style;
1170     WNDPROC   lpfnWndProc;
1171     INT       cbClsExtra;
1172     INT       cbWndExtra;
1173     HINSTANCE hInstance;
1174     HICON     hIcon;
1175     HCURSOR   hCursor;
1176     HBRUSH    hbrBackground;
1177     LPCWSTR     lpszMenuName;
1178     LPCWSTR     lpszClassName;
1179     HICON     hIconSm;
1180 } WNDCLASSEXW, *LPWNDCLASSEXW;
1181
1182 DECL_WINELIB_TYPE_AW(WNDCLASSEX)
1183 DECL_WINELIB_TYPE_AW(LPWNDCLASSEX)
1184
1185 typedef struct
1186 {
1187     HWND    hwnd;
1188     UINT    message;
1189     WPARAM  wParam;
1190     LPARAM    lParam;
1191     DWORD     time;
1192     POINT   pt;
1193 } MSG, *LPMSG;
1194
1195         
1196 /* Cursors / Icons */
1197
1198 typedef struct {
1199         BOOL            fIcon;
1200         DWORD           xHotspot;
1201         DWORD           yHotspot;
1202         HBITMAP hbmMask;
1203         HBITMAP hbmColor;
1204 } ICONINFO,*LPICONINFO;
1205
1206
1207 /* this is the 6 byte accel struct used in Win32 when presented to the user */
1208 typedef struct
1209 {
1210     BYTE   fVirt;
1211     BYTE   pad0;
1212     WORD   key;
1213     WORD   cmd;
1214 } ACCEL, *LPACCEL;
1215
1216 /* this is the 8 byte accel struct used in Win32 resources (internal only) */
1217 typedef struct
1218 {
1219     BYTE   fVirt;
1220     BYTE   pad0;
1221     WORD   key;
1222     WORD   cmd;
1223     WORD   pad1;
1224 } PE_ACCEL, *LPPE_ACCEL;
1225
1226
1227 /* Flags for TrackPopupMenu */
1228 #define TPM_LEFTBUTTON    0x0000
1229 #define TPM_RIGHTBUTTON   0x0002
1230 #define TPM_LEFTALIGN     0x0000
1231 #define TPM_CENTERALIGN   0x0004
1232 #define TPM_RIGHTALIGN    0x0008
1233 #define TPM_TOPALIGN      0x0000
1234 #define TPM_VCENTERALIGN  0x0010
1235 #define TPM_BOTTOMALIGN   0x0020
1236 #define TPM_HORIZONTAL    0x0000
1237 #define TPM_VERTICAL      0x0040
1238 #define TPM_NONOTIFY      0x0080
1239 #define TPM_RETURNCMD     0x0100
1240
1241 typedef struct 
1242 {
1243     UINT   cbSize;
1244     RECT   rcExclude;
1245 } TPMPARAMS, *LPTPMPARAMS;
1246
1247 /* FIXME: not sure this one is correct */
1248 typedef struct {
1249   UINT    cbSize;
1250   UINT    fMask;
1251   UINT    fType;
1252   UINT    fState;
1253   UINT    wID;
1254   HMENU   hSubMenu;
1255   HBITMAP hbmpChecked;
1256   HBITMAP hbmpUnchecked;
1257   DWORD     dwItemData;
1258   LPSTR     dwTypeData;
1259   UINT    cch;
1260 } MENUITEMINFOA, *LPMENUITEMINFOA;
1261
1262 typedef struct {
1263   UINT    cbSize;
1264   UINT    fMask;
1265   UINT    fType;
1266   UINT    fState;
1267   UINT    wID;
1268   HMENU   hSubMenu;
1269   HBITMAP hbmpChecked;
1270   HBITMAP hbmpUnchecked;
1271   DWORD     dwItemData;
1272   LPWSTR    dwTypeData;
1273   UINT    cch;
1274 } MENUITEMINFOW, *LPMENUITEMINFOW;
1275
1276 DECL_WINELIB_TYPE_AW(MENUITEMINFO)
1277 DECL_WINELIB_TYPE_AW(LPMENUITEMINFO)
1278
1279 typedef struct {
1280   WORD versionNumber;
1281   WORD offset;
1282 } MENUITEMTEMPLATEHEADER, *PMENUITEMTEMPLATEHEADER;
1283
1284
1285 typedef struct {
1286   WORD mtOption;
1287   WORD mtID;
1288   WCHAR mtString[1];
1289 } MENUITEMTEMPLATE, *PMENUITEMTEMPLATE;
1290
1291
1292 typedef VOID   MENUTEMPLATE;
1293 typedef PVOID *LPMENUTEMPLATE;
1294
1295 /* Field specifiers for MENUITEMINFO[AW] type.  */
1296 #define MIIM_STATE       0x00000001
1297 #define MIIM_ID          0x00000002
1298 #define MIIM_SUBMENU     0x00000004
1299 #define MIIM_CHECKMARKS  0x00000008
1300 #define MIIM_TYPE        0x00000010
1301 #define MIIM_DATA        0x00000020
1302
1303 /* DrawState defines ... */
1304 typedef BOOL (CALLBACK *DRAWSTATEPROC)(HDC,LPARAM,WPARAM,INT,INT);
1305
1306 /* WM_H/VSCROLL commands */
1307 #define SB_LINEUP           0
1308 #define SB_LINELEFT         0
1309 #define SB_LINEDOWN         1
1310 #define SB_LINERIGHT        1
1311 #define SB_PAGEUP           2
1312 #define SB_PAGELEFT         2
1313 #define SB_PAGEDOWN         3
1314 #define SB_PAGERIGHT        3
1315 #define SB_THUMBPOSITION    4
1316 #define SB_THUMBTRACK       5
1317 #define SB_TOP              6
1318 #define SB_LEFT             6
1319 #define SB_BOTTOM           7
1320 #define SB_RIGHT            7
1321 #define SB_ENDSCROLL        8
1322
1323 /* Scroll bar selection constants */
1324 #define SB_HORZ             0
1325 #define SB_VERT             1
1326 #define SB_CTL              2
1327 #define SB_BOTH             3
1328
1329 /* Scrollbar styles */
1330 #define SBS_HORZ                    0x0000L
1331 #define SBS_VERT                    0x0001L
1332 #define SBS_TOPALIGN                0x0002L
1333 #define SBS_LEFTALIGN               0x0002L
1334 #define SBS_BOTTOMALIGN             0x0004L
1335 #define SBS_RIGHTALIGN              0x0004L
1336 #define SBS_SIZEBOXTOPLEFTALIGN     0x0002L
1337 #define SBS_SIZEBOXBOTTOMRIGHTALIGN 0x0004L
1338 #define SBS_SIZEBOX                 0x0008L
1339 #define SBS_SIZEGRIP                0x0010L
1340
1341 /* EnableScrollBar() flags */
1342 #define ESB_ENABLE_BOTH     0x0000
1343 #define ESB_DISABLE_BOTH    0x0003
1344
1345 #define ESB_DISABLE_LEFT    0x0001
1346 #define ESB_DISABLE_RIGHT   0x0002
1347
1348 #define ESB_DISABLE_UP      0x0001
1349 #define ESB_DISABLE_DOWN    0x0002
1350
1351 #define ESB_DISABLE_LTUP    ESB_DISABLE_LEFT
1352 #define ESB_DISABLE_RTDN    ESB_DISABLE_RIGHT
1353
1354 /* Win32 button control messages */
1355 #define BM_GETCHECK          0x00f0
1356 #define BM_SETCHECK          0x00f1
1357 #define BM_GETSTATE          0x00f2
1358 #define BM_SETSTATE          0x00f3
1359 #define BM_SETSTYLE          0x00f4
1360 #define BM_CLICK             0x00f5
1361 #define BM_GETIMAGE          0x00f6
1362 #define BM_SETIMAGE          0x00f7
1363 /* Winelib button control messages */
1364
1365 /* Button notification codes */
1366 #define BN_CLICKED             0
1367 #define BN_PAINT               1
1368 #define BN_HILITE              2
1369 #define BN_UNHILITE            3
1370 #define BN_DISABLE             4
1371 #define BN_DOUBLECLICKED       5
1372
1373 /* Button states */
1374 #define BST_UNCHECKED        0x0000
1375 #define BST_CHECKED          0x0001
1376 #define BST_INDETERMINATE    0x0002
1377 #define BST_PUSHED           0x0004
1378 #define BST_FOCUS            0x0008      
1379
1380 /* Static Control Styles */
1381 #define SS_LEFT             0x00000000L
1382 #define SS_CENTER           0x00000001L
1383 #define SS_RIGHT            0x00000002L
1384 #define SS_ICON             0x00000003L
1385 #define SS_BLACKRECT        0x00000004L
1386 #define SS_GRAYRECT         0x00000005L
1387 #define SS_WHITERECT        0x00000006L
1388 #define SS_BLACKFRAME       0x00000007L
1389 #define SS_GRAYFRAME        0x00000008L
1390 #define SS_WHITEFRAME       0x00000009L
1391
1392 #define SS_SIMPLE           0x0000000BL
1393 #define SS_LEFTNOWORDWRAP   0x0000000CL
1394
1395 #define SS_OWNERDRAW        0x0000000DL
1396 #define SS_BITMAP           0x0000000EL
1397 #define SS_ENHMETAFILE      0x0000000FL
1398
1399 #define SS_ETCHEDHORZ       0x00000010L
1400 #define SS_ETCHEDVERT       0x00000011L
1401 #define SS_ETCHEDFRAME      0x00000012L
1402 #define SS_TYPEMASK         0x0000001FL
1403
1404 #define SS_NOPREFIX         0x00000080L
1405 #define SS_NOTIFY           0x00000100L
1406 #define SS_CENTERIMAGE      0x00000200L
1407 #define SS_RIGHTJUST        0x00000400L
1408 #define SS_REALSIZEIMAGE    0x00000800L
1409 #define SS_SUNKEN           0x00001000L
1410
1411 /* Static Control Messages */
1412 #define STM_SETICON       0x0170
1413 #define STM_GETICON       0x0171
1414 #define STM_SETIMAGE        0x0172
1415 #define STM_GETIMAGE        0x0173
1416
1417 /* Scrollbar messages */
1418 #define SBM_SETPOS             0x00e0
1419 #define SBM_GETPOS             0x00e1
1420 #define SBM_SETRANGE           0x00e2
1421 #define SBM_GETRANGE           0x00e3
1422 #define SBM_ENABLE_ARROWS      0x00e4
1423 #define SBM_SETRANGEREDRAW     0x00e6
1424 #define SBM_SETSCROLLINFO      0x00e9
1425 #define SBM_GETSCROLLINFO      0x00ea
1426
1427 /* Scrollbar info */
1428 typedef struct
1429 {
1430     UINT    cbSize;
1431     UINT    fMask;
1432     INT     nMin;
1433     INT     nMax;
1434     UINT    nPage;
1435     INT     nPos;
1436     INT     nTrackPos;
1437 } SCROLLINFO, *LPSCROLLINFO;
1438  
1439 /* GetScrollInfo() flags */ 
1440 #define SIF_RANGE           0x0001
1441 #define SIF_PAGE            0x0002
1442 #define SIF_POS             0x0004
1443 #define SIF_DISABLENOSCROLL 0x0008
1444 #define SIF_TRACKPOS        0x0010
1445 #define SIF_ALL             (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
1446
1447 /* Listbox styles */
1448 #define LBS_NOTIFY               0x0001
1449 #define LBS_SORT                 0x0002
1450 #define LBS_NOREDRAW             0x0004
1451 #define LBS_MULTIPLESEL          0x0008
1452 #define LBS_OWNERDRAWFIXED       0x0010
1453 #define LBS_OWNERDRAWVARIABLE    0x0020
1454 #define LBS_HASSTRINGS           0x0040
1455 #define LBS_USETABSTOPS          0x0080
1456 #define LBS_NOINTEGRALHEIGHT     0x0100
1457 #define LBS_MULTICOLUMN          0x0200
1458 #define LBS_WANTKEYBOARDINPUT    0x0400
1459 #define LBS_EXTENDEDSEL          0x0800
1460 #define LBS_DISABLENOSCROLL      0x1000
1461 #define LBS_NODATA               0x2000
1462 #define LBS_NOSEL                0x4000
1463 #define LBS_STANDARD  (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER)
1464
1465 /* Listbox messages */
1466 #define LB_ADDSTRING           0x0180
1467 #define LB_INSERTSTRING        0x0181
1468 #define LB_DELETESTRING        0x0182
1469 #define LB_SELITEMRANGEEX      0x0183
1470 #define LB_RESETCONTENT        0x0184
1471 #define LB_SETSEL              0x0185
1472 #define LB_SETCURSEL           0x0186
1473 #define LB_GETSEL              0x0187
1474 #define LB_GETCURSEL           0x0188
1475 #define LB_GETTEXT             0x0189
1476 #define LB_GETTEXTLEN          0x018a
1477 #define LB_GETCOUNT            0x018b
1478 #define LB_SELECTSTRING        0x018c
1479 #define LB_DIR                 0x018d
1480 #define LB_GETTOPINDEX         0x018e
1481 #define LB_FINDSTRING          0x018f
1482 #define LB_GETSELCOUNT         0x0190
1483 #define LB_GETSELITEMS         0x0191
1484 #define LB_SETTABSTOPS         0x0192
1485 #define LB_GETHORIZONTALEXTENT 0x0193
1486 #define LB_SETHORIZONTALEXTENT 0x0194
1487 #define LB_SETCOLUMNWIDTH      0x0195
1488 #define LB_ADDFILE             0x0196
1489 #define LB_SETTOPINDEX         0x0197
1490 #define LB_GETITEMRECT         0x0198
1491 #define LB_GETITEMDATA         0x0199
1492 #define LB_SETITEMDATA         0x019a
1493 #define LB_SELITEMRANGE        0x019b
1494 #define LB_SETANCHORINDEX      0x019c
1495 #define LB_GETANCHORINDEX      0x019d
1496 #define LB_SETCARETINDEX       0x019e
1497 #define LB_GETCARETINDEX       0x019f
1498 #define LB_SETITEMHEIGHT       0x01a0
1499 #define LB_GETITEMHEIGHT       0x01a1
1500 #define LB_FINDSTRINGEXACT     0x01a2
1501 #define LB_CARETON             0x01a3
1502 #define LB_CARETOFF            0x01a4
1503 #define LB_SETLOCALE           0x01a5
1504 #define LB_GETLOCALE           0x01a6
1505 #define LB_SETCOUNT            0x01a7
1506 #define LB_INITSTORAGE         0x01a8
1507 #define LB_ITEMFROMPOINT       0x01a9
1508
1509 /* Listbox notification codes */
1510 #define LBN_ERRSPACE        (-2)
1511 #define LBN_SELCHANGE       1
1512 #define LBN_DBLCLK          2
1513 #define LBN_SELCANCEL       3
1514 #define LBN_SETFOCUS        4
1515 #define LBN_KILLFOCUS       5
1516
1517 /* Listbox message return values */
1518 #define LB_OKAY             0
1519 #define LB_ERR              (-1)
1520 #define LB_ERRSPACE         (-2)
1521
1522 #define LB_CTLCODE          0L
1523
1524 /* Combo box styles */
1525 #define CBS_SIMPLE            0x0001L
1526 #define CBS_DROPDOWN          0x0002L
1527 #define CBS_DROPDOWNLIST      0x0003L
1528 #define CBS_OWNERDRAWFIXED    0x0010L
1529 #define CBS_OWNERDRAWVARIABLE 0x0020L
1530 #define CBS_AUTOHSCROLL       0x0040L
1531 #define CBS_OEMCONVERT        0x0080L
1532 #define CBS_SORT              0x0100L
1533 #define CBS_HASSTRINGS        0x0200L
1534 #define CBS_NOINTEGRALHEIGHT  0x0400L
1535 #define CBS_DISABLENOSCROLL   0x0800L
1536
1537 #define CBS_UPPERCASE         0x2000L
1538 #define CBS_LOWERCASE         0x4000L
1539
1540
1541 /* Combo box messages */
1542 #define CB_GETEDITSEL            0x0140
1543 #define CB_LIMITTEXT             0x0141
1544 #define CB_SETEDITSEL            0x0142
1545 #define CB_ADDSTRING             0x0143
1546 #define CB_DELETESTRING          0x0144
1547 #define CB_DIR                   0x0145
1548 #define CB_GETCOUNT              0x0146
1549 #define CB_GETCURSEL             0x0147
1550 #define CB_GETLBTEXT             0x0148
1551 #define CB_GETLBTEXTLEN          0x0149
1552 #define CB_INSERTSTRING          0x014a
1553 #define CB_RESETCONTENT          0x014b
1554 #define CB_FINDSTRING            0x014c
1555 #define CB_SELECTSTRING          0x014d
1556 #define CB_SETCURSEL             0x014e
1557 #define CB_SHOWDROPDOWN          0x014f
1558 #define CB_GETITEMDATA           0x0150
1559 #define CB_SETITEMDATA           0x0151
1560 #define CB_GETDROPPEDCONTROLRECT 0x0152
1561 #define CB_SETITEMHEIGHT         0x0153
1562 #define CB_GETITEMHEIGHT         0x0154
1563 #define CB_SETEXTENDEDUI         0x0155
1564 #define CB_GETEXTENDEDUI         0x0156
1565 #define CB_GETDROPPEDSTATE       0x0157
1566 #define CB_FINDSTRINGEXACT       0x0158
1567 #define CB_SETLOCALE             0x0159
1568 #define CB_GETLOCALE             0x015a
1569 #define CB_GETTOPINDEX           0x015b
1570 #define CB_SETTOPINDEX           0x015c
1571 #define CB_GETHORIZONTALEXTENT   0x015d
1572 #define CB_SETHORIZONTALEXTENT   0x015e
1573 #define CB_GETDROPPEDWIDTH       0x015f
1574 #define CB_SETDROPPEDWIDTH       0x0160
1575 #define CB_INITSTORAGE           0x0161
1576
1577 /* Combo box notification codes */
1578 #define CBN_ERRSPACE        (-1)
1579 #define CBN_SELCHANGE       1
1580 #define CBN_DBLCLK          2
1581 #define CBN_SETFOCUS        3
1582 #define CBN_KILLFOCUS       4
1583 #define CBN_EDITCHANGE      5
1584 #define CBN_EDITUPDATE      6
1585 #define CBN_DROPDOWN        7
1586 #define CBN_CLOSEUP         8
1587 #define CBN_SELENDOK        9
1588 #define CBN_SELENDCANCEL    10
1589
1590 /* Combo box message return values */
1591 #define CB_OKAY             0
1592 #define CB_ERR              (-1)
1593 #define CB_ERRSPACE         (-2)
1594
1595 #define MB_OK                   0x00000000
1596 #define MB_OKCANCEL             0x00000001
1597 #define MB_ABORTRETRYIGNORE     0x00000002
1598 #define MB_YESNOCANCEL          0x00000003
1599 #define MB_YESNO                0x00000004
1600 #define MB_RETRYCANCEL          0x00000005
1601 #define MB_TYPEMASK             0x0000000F
1602
1603 #define MB_ICONHAND             0x00000010
1604 #define MB_ICONQUESTION         0x00000020
1605 #define MB_ICONEXCLAMATION      0x00000030
1606 #define MB_ICONASTERISK         0x00000040
1607 #define MB_USERICON             0x00000080
1608 #define MB_ICONMASK             0x000000F0
1609
1610 #define MB_ICONINFORMATION      MB_ICONASTERISK
1611 #define MB_ICONSTOP             MB_ICONHAND
1612 #define MB_ICONWARNING          MB_ICONEXCLAMATION
1613 #define MB_ICONERROR            MB_ICONHAND
1614
1615 #define MB_DEFBUTTON1           0x00000000
1616 #define MB_DEFBUTTON2           0x00000100
1617 #define MB_DEFBUTTON3           0x00000200
1618 #define MB_DEFBUTTON4           0x00000300
1619 #define MB_DEFMASK              0x00000F00
1620
1621 #define MB_APPLMODAL            0x00000000
1622 #define MB_SYSTEMMODAL          0x00001000
1623 #define MB_TASKMODAL            0x00002000
1624 #define MB_MODEMASK             0x00003000
1625
1626 #define MB_HELP                 0x00004000
1627 #define MB_NOFOCUS              0x00008000
1628 #define MB_MISCMASK             0x0000C000
1629
1630 #define MB_SETFOREGROUND        0x00010000
1631 #define MB_DEFAULT_DESKTOP_ONLY 0x00020000
1632 #define MB_SERVICE_NOTIFICATION 0x00040000
1633 #define MB_TOPMOST              0x00040000
1634 #define MB_RIGHT                0x00080000
1635 #define MB_RTLREADING           0x00100000
1636
1637 #define HELPINFO_WINDOW         0x0001
1638 #define HELPINFO_MENUITEM       0x0002
1639
1640 /* Structure pointed to by lParam of WM_HELP */
1641 typedef struct                  
1642 {
1643     UINT        cbSize;         /* Size in bytes of this struct  */
1644     INT iContextType;   /* Either HELPINFO_WINDOW or HELPINFO_MENUITEM */
1645     INT iCtrlId;        /* Control Id or a Menu item Id. */
1646     HANDLE      hItemHandle;    /* hWnd of control or hMenu.     */
1647     DWORD       dwContextId;    /* Context Id associated with this item */
1648     POINT       MousePos;       /* Mouse Position in screen co-ordinates */
1649 }  HELPINFO,*LPHELPINFO;
1650
1651 typedef void (CALLBACK *MSGBOXCALLBACK)(LPHELPINFO lpHelpInfo);
1652
1653 typedef struct
1654 {
1655     UINT        cbSize;
1656     HWND        hwndOwner;
1657     HINSTANCE   hInstance;
1658     LPCSTR      lpszText;
1659     LPCSTR      lpszCaption;
1660     DWORD       dwStyle;
1661     LPCSTR      lpszIcon;
1662     DWORD       dwContextHelpId;
1663     MSGBOXCALLBACK      lpfnMsgBoxCallback;
1664     DWORD       dwLanguageId;
1665 } MSGBOXPARAMSA,*LPMSGBOXPARAMSA;
1666
1667 typedef struct
1668 {
1669     UINT        cbSize;
1670     HWND        hwndOwner;
1671     HINSTANCE   hInstance;
1672     LPCWSTR     lpszText;
1673     LPCWSTR     lpszCaption;
1674     DWORD       dwStyle;
1675     LPCWSTR     lpszIcon;
1676     DWORD       dwContextHelpId;
1677     MSGBOXCALLBACK      lpfnMsgBoxCallback;
1678     DWORD       dwLanguageId;
1679 } MSGBOXPARAMSW,*LPMSGBOXPARAMSW;
1680
1681 DECL_WINELIB_TYPE_AW(MSGBOXPARAMS)
1682 DECL_WINELIB_TYPE_AW(LPMSGBOXPARAMS)
1683
1684 typedef struct _numberfmt32a {
1685     UINT NumDigits;
1686     UINT LeadingZero;
1687     UINT Grouping;
1688     LPCSTR lpDecimalSep;
1689     LPCSTR lpThousandSep;
1690     UINT NegativeOrder;
1691 } NUMBERFMTA;
1692
1693 typedef struct _numberfmt32w {
1694     UINT NumDigits;
1695     UINT LeadingZero;
1696     UINT Grouping;
1697     LPCWSTR lpDecimalSep;
1698     LPCWSTR lpThousandSep;
1699     UINT NegativeOrder;
1700 } NUMBERFMTW;
1701
1702 #define MONITOR_DEFAULTTONULL       0x00000000
1703 #define MONITOR_DEFAULTTOPRIMARY    0x00000001
1704 #define MONITOR_DEFAULTTONEAREST    0x00000002
1705
1706 #define MONITORINFOF_PRIMARY        0x00000001
1707
1708 typedef struct tagMONITORINFO
1709 {
1710     DWORD   cbSize;
1711     RECT  rcMonitor;
1712     RECT  rcWork;
1713     DWORD   dwFlags;
1714 } MONITORINFO, *LPMONITORINFO;
1715
1716 typedef struct tagMONITORINFOEXA
1717 {
1718     MONITORINFO dummy;
1719     CHAR        szDevice[CCHDEVICENAME];
1720 } MONITORINFOEXA, *LPMONITORINFOEXA;
1721
1722 typedef struct tagMONITORINFOEXW
1723 {
1724     MONITORINFO dummy;
1725     WCHAR       szDevice[CCHDEVICENAME];
1726 } MONITORINFOEXW, *LPMONITORINFOEXW;
1727
1728 DECL_WINELIB_TYPE_AW(MONITORINFOEX)
1729 DECL_WINELIB_TYPE_AW(LPMONITORINFOEX)
1730
1731 typedef BOOL  (CALLBACK *MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM);
1732
1733 /* FIXME: use this instead of LPCVOID for CreateDialogIndirectParam
1734    and DialogBoxIndirectParam */
1735 typedef struct tagDLGTEMPLATE
1736 {
1737     DWORD style;
1738     DWORD dwExtendedStyle;
1739     WORD cdit;
1740     short x;
1741     short y;
1742     short cx;
1743     short cy;
1744 } DLGTEMPLATE;
1745
1746 typedef DLGTEMPLATE *LPDLGTEMPLATEA;
1747 typedef DLGTEMPLATE *LPDLGTEMPLATEW;
1748 #define LPDLGTEMPLATE WINELIB_NAME_AW(LPDLGTEMPLATE)
1749 typedef const DLGTEMPLATE *LPCDLGTEMPLATEA;
1750 typedef const DLGTEMPLATE *LPCDLGTEMPLATEW;
1751 #define LPCDLGTEMPLATE WINELIB_NAME_AW(LPCDLGTEMPLATE)
1752
1753 typedef struct tagDLGITEMTEMPLATE
1754 {
1755     DWORD style;
1756     DWORD dwExtendedStyle;
1757     short x;
1758     short y;
1759     short cx;
1760     short cy;
1761     WORD id;
1762 } DLGITEMTEMPLATE;
1763
1764 typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEA;
1765 typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEW;
1766 #define LPDLGITEMTEMPLATE WINELIB_NAME_AW(LPDLGITEMTEMPLATE)
1767 typedef const DLGITEMTEMPLATE *LPCDLGITEMTEMPLATEA;
1768 typedef const DLGITEMTEMPLATE *LPCDLGITEMTEMPLATEW;
1769 #define LPCDLGITEMTEMPLATE WINELIB_NAME_AW(LPCDLGITEMTEMPLATE)
1770
1771
1772   /* CBT hook values */
1773 #define HCBT_MOVESIZE       0
1774 #define HCBT_MINMAX         1
1775 #define HCBT_QS             2
1776 #define HCBT_CREATEWND      3
1777 #define HCBT_DESTROYWND     4
1778 #define HCBT_ACTIVATE       5
1779 #define HCBT_CLICKSKIPPED   6
1780 #define HCBT_KEYSKIPPED     7
1781 #define HCBT_SYSCOMMAND     8
1782 #define HCBT_SETFOCUS       9
1783
1784   /* CBT hook structures */
1785
1786 typedef struct
1787 {
1788     CREATESTRUCTA *lpcs;
1789     HWND           hwndInsertAfter;
1790 } CBT_CREATEWNDA, *LPCBT_CREATEWNDA;
1791
1792 typedef struct
1793 {
1794     CREATESTRUCTW *lpcs;
1795     HWND           hwndInsertAfter;
1796 } CBT_CREATEWNDW, *LPCBT_CREATEWNDW;
1797
1798 DECL_WINELIB_TYPE_AW(CBT_CREATEWND)
1799 DECL_WINELIB_TYPE_AW(LPCBT_CREATEWND)
1800
1801 typedef struct
1802 {
1803     BOOL    fMouse;
1804     HWND    hWndActive;
1805 } CBTACTIVATESTRUCT, *LPCBTACTIVATESTRUCT;
1806
1807
1808 /* modifiers for RegisterHotKey */
1809 #define MOD_ALT         0x0001
1810 #define MOD_CONTROL     0x0002
1811 #define MOD_SHIFT       0x0004
1812 #define MOD_WIN         0x0008
1813
1814 /* ids for RegisterHotKey */
1815 #define IDHOT_SNAPWINDOW        (-1)    /* SHIFT-PRINTSCRN  */
1816 #define IDHOT_SNAPDESKTOP       (-2)    /* PRINTSCRN        */
1817
1818   /* keybd_event flags */
1819 #define KEYEVENTF_EXTENDEDKEY        0x0001
1820 #define KEYEVENTF_KEYUP              0x0002
1821 #define KEYEVENTF_WINE_FORCEEXTENDED 0x8000
1822
1823   /* mouse_event flags */
1824 #define MOUSEEVENTF_MOVE        0x0001
1825 #define MOUSEEVENTF_LEFTDOWN    0x0002
1826 #define MOUSEEVENTF_LEFTUP      0x0004
1827 #define MOUSEEVENTF_RIGHTDOWN   0x0008
1828 #define MOUSEEVENTF_RIGHTUP     0x0010
1829 #define MOUSEEVENTF_MIDDLEDOWN  0x0020
1830 #define MOUSEEVENTF_MIDDLEUP    0x0040
1831 #define MOUSEEVENTF_ABSOLUTE    0x8000
1832
1833 /* ExitWindows() flags */
1834 #define EW_RESTARTWINDOWS   0x0042
1835 #define EW_REBOOTSYSTEM     0x0043
1836 #define EW_EXITANDEXECAPP   0x0044
1837
1838 /* ExitWindowsEx() flags */
1839 #define EWX_LOGOFF           0
1840 #define EWX_SHUTDOWN         1
1841 #define EWX_REBOOT           2
1842 #define EWX_FORCE            4
1843 #define EWX_POWEROFF         8
1844
1845 /* SetLastErrorEx types */
1846 #define SLE_ERROR       0x00000001
1847 #define SLE_MINORERROR  0x00000002
1848 #define SLE_WARNING     0x00000003
1849
1850 /* Predefined resources */
1851 #define IDI_APPLICATIONA MAKEINTRESOURCEA(32512)
1852 #define IDI_APPLICATIONW MAKEINTRESOURCEW(32512)
1853 #define IDI_APPLICATION    WINELIB_NAME_AW(IDI_APPLICATION)
1854 #define IDI_HANDA        MAKEINTRESOURCEA(32513)
1855 #define IDI_HANDW        MAKEINTRESOURCEW(32513)
1856 #define IDI_HAND           WINELIB_NAME_AW(IDI_HAND)
1857 #define IDI_QUESTIONA    MAKEINTRESOURCEA(32514)
1858 #define IDI_QUESTIONW    MAKEINTRESOURCEW(32514)
1859 #define IDI_QUESTION       WINELIB_NAME_AW(IDI_QUESTION)
1860 #define IDI_EXCLAMATIONA MAKEINTRESOURCEA(32515)
1861 #define IDI_EXCLAMATIONW MAKEINTRESOURCEW(32515)
1862 #define IDI_EXCLAMATION    WINELIB_NAME_AW(IDI_EXCLAMATION)
1863 #define IDI_ASTERISKA    MAKEINTRESOURCEA(32516)
1864 #define IDI_ASTERISKW    MAKEINTRESOURCEW(32516)
1865 #define IDI_ASTERISK       WINELIB_NAME_AW(IDI_ASTERISK)
1866
1867 #define IDC_BUMMERA      MAKEINTRESOURCEA(100)
1868 #define IDC_BUMMERW      MAKEINTRESOURCEW(100)
1869 #define IDC_BUMMER         WINELIB_NAME_AW(IDC_BUMMER)
1870 #define IDC_ARROWA       MAKEINTRESOURCEA(32512)
1871 #define IDC_ARROWW       MAKEINTRESOURCEW(32512)
1872 #define IDC_ARROW          WINELIB_NAME_AW(IDC_ARROW)
1873 #define IDC_IBEAMA       MAKEINTRESOURCEA(32513)
1874 #define IDC_IBEAMW       MAKEINTRESOURCEW(32513)
1875 #define IDC_IBEAM          WINELIB_NAME_AW(IDC_IBEAM)
1876 #define IDC_WAITA        MAKEINTRESOURCEA(32514)
1877 #define IDC_WAITW        MAKEINTRESOURCEW(32514)
1878 #define IDC_WAIT           WINELIB_NAME_AW(IDC_WAIT)
1879 #define IDC_CROSSA       MAKEINTRESOURCEA(32515)
1880 #define IDC_CROSSW       MAKEINTRESOURCEW(32515)
1881 #define IDC_CROSS          WINELIB_NAME_AW(IDC_CROSS)
1882 #define IDC_UPARROWA     MAKEINTRESOURCEA(32516)
1883 #define IDC_UPARROWW     MAKEINTRESOURCEW(32516)
1884 #define IDC_UPARROW        WINELIB_NAME_AW(IDC_UPARROW)
1885 #define IDC_SIZEA        MAKEINTRESOURCEA(32640)
1886 #define IDC_SIZEW        MAKEINTRESOURCEW(32640)
1887 #define IDC_SIZE           WINELIB_NAME_AW(IDC_SIZE)
1888 #define IDC_ICONA        MAKEINTRESOURCEA(32641)
1889 #define IDC_ICONW        MAKEINTRESOURCEW(32641)
1890 #define IDC_ICON           WINELIB_NAME_AW(IDC_ICON)
1891 #define IDC_SIZENWSEA    MAKEINTRESOURCEA(32642)
1892 #define IDC_SIZENWSEW    MAKEINTRESOURCEW(32642)
1893 #define IDC_SIZENWSE       WINELIB_NAME_AW(IDC_SIZENWSE)
1894 #define IDC_SIZENESWA    MAKEINTRESOURCEA(32643)
1895 #define IDC_SIZENESWW    MAKEINTRESOURCEW(32643)
1896 #define IDC_SIZENESW       WINELIB_NAME_AW(IDC_SIZENESW)
1897 #define IDC_SIZEWEA      MAKEINTRESOURCEA(32644)
1898 #define IDC_SIZEWEW      MAKEINTRESOURCEW(32644)
1899 #define IDC_SIZEWE         WINELIB_NAME_AW(IDC_SIZEWE)
1900 #define IDC_SIZENSA      MAKEINTRESOURCEA(32645)
1901 #define IDC_SIZENSW      MAKEINTRESOURCEW(32645)
1902 #define IDC_SIZENS         WINELIB_NAME_AW(IDC_SIZENS)
1903 #define IDC_SIZEALLA     MAKEINTRESOURCEA(32646)
1904 #define IDC_SIZEALLW     MAKEINTRESOURCEW(32646)
1905 #define IDC_SIZEALL        WINELIB_NAME_AW(IDC_SIZEALL)
1906 #define IDC_NOA          MAKEINTRESOURCEA(32648)
1907 #define IDC_NOW          MAKEINTRESOURCEW(32648)
1908 #define IDC_NO             WINELIB_NAME_AW(IDC_NO)
1909 #define IDC_APPSTARTINGA MAKEINTRESOURCEA(32650)
1910 #define IDC_APPSTARTINGW MAKEINTRESOURCEW(32650)
1911 #define IDC_APPSTARTING    WINELIB_NAME_AW(IDC_APPSTARTING)
1912 #define IDC_HELPA        MAKEINTRESOURCEA(32651)
1913 #define IDC_HELPW        MAKEINTRESOURCEW(32651)
1914 #define IDC_HELP           WINELIB_NAME_AW(IDC_HELP)
1915
1916 /* SystemParametersInfo */
1917 /* defines below are for all win versions */
1918 #define SPI_GETBEEP               1
1919 #define SPI_SETBEEP               2
1920 #define SPI_GETMOUSE              3
1921 #define SPI_SETMOUSE              4
1922 #define SPI_GETBORDER             5
1923 #define SPI_SETBORDER             6
1924 #define SPI_GETKEYBOARDSPEED      10
1925 #define SPI_SETKEYBOARDSPEED      11
1926 #define SPI_LANGDRIVER            12
1927 #define SPI_ICONHORIZONTALSPACING 13
1928 #define SPI_GETSCREENSAVETIMEOUT  14
1929 #define SPI_SETSCREENSAVETIMEOUT  15
1930 #define SPI_GETSCREENSAVEACTIVE   16
1931 #define SPI_SETSCREENSAVEACTIVE   17
1932 #define SPI_GETGRIDGRANULARITY    18
1933 #define SPI_SETGRIDGRANULARITY    19
1934 #define SPI_SETDESKWALLPAPER      20
1935 #define SPI_SETDESKPATTERN        21
1936 #define SPI_GETKEYBOARDDELAY      22
1937 #define SPI_SETKEYBOARDDELAY      23
1938 #define SPI_ICONVERTICALSPACING   24
1939 #define SPI_GETICONTITLEWRAP      25
1940 #define SPI_SETICONTITLEWRAP      26
1941 #define SPI_GETMENUDROPALIGNMENT  27
1942 #define SPI_SETMENUDROPALIGNMENT  28
1943 #define SPI_SETDOUBLECLKWIDTH     29
1944 #define SPI_SETDOUBLECLKHEIGHT    30
1945 #define SPI_GETICONTITLELOGFONT   31
1946 #define SPI_SETDOUBLECLICKTIME    32
1947 #define SPI_SETMOUSEBUTTONSWAP    33
1948 #define SPI_SETICONTITLELOGFONT   34
1949 #define SPI_GETFASTTASKSWITCH     35
1950 #define SPI_SETFASTTASKSWITCH     36
1951 #define SPI_SETDRAGFULLWINDOWS    37
1952 #define SPI_GETDRAGFULLWINDOWS    38
1953
1954 #define SPI_GETFILTERKEYS         50
1955 #define SPI_SETFILTERKEYS         51
1956 #define SPI_GETTOGGLEKEYS         52
1957 #define SPI_SETTOGGLEKEYS         53
1958 #define SPI_GETMOUSEKEYS          54
1959 #define SPI_SETMOUSEKEYS          55
1960 #define SPI_GETSHOWSOUNDS         56
1961 #define SPI_SETSHOWSOUNDS         57
1962 #define SPI_GETSTICKYKEYS         58
1963 #define SPI_SETSTICKYKEYS         59
1964 #define SPI_GETACCESSTIMEOUT      60
1965 #define SPI_SETACCESSTIMEOUT      61
1966
1967 #define SPI_GETSOUNDSENTRY        64
1968 #define SPI_SETSOUNDSENTRY        65
1969
1970 /* defines below are for all win versions WINVER >= 0x0400 */
1971 #define SPI_SETDRAGFULLWINDOWS    37
1972 #define SPI_GETDRAGFULLWINDOWS    38
1973 #define SPI_GETNONCLIENTMETRICS   41
1974 #define SPI_SETNONCLIENTMETRICS   42
1975 #define SPI_GETMINIMIZEDMETRICS   43
1976 #define SPI_SETMINIMIZEDMETRICS   44
1977 #define SPI_GETICONMETRICS        45
1978 #define SPI_SETICONMETRICS        46
1979 #define SPI_SETWORKAREA           47
1980 #define SPI_GETWORKAREA           48
1981 #define SPI_SETPENWINDOWS         49
1982
1983 #define SPI_GETSERIALKEYS         62
1984 #define SPI_SETSERIALKEYS         63
1985 #define SPI_GETHIGHCONTRAST       66
1986 #define SPI_SETHIGHCONTRAST       67
1987 #define SPI_GETKEYBOARDPREF       68
1988 #define SPI_SETKEYBOARDPREF       69
1989 #define SPI_GETSCREENREADER       70
1990 #define SPI_SETSCREENREADER       71
1991 #define SPI_GETANIMATION          72
1992 #define SPI_SETANIMATION          73
1993 #define SPI_GETFONTSMOOTHING      74
1994 #define SPI_SETFONTSMOOTHING      75
1995 #define SPI_SETDRAGWIDTH          76
1996 #define SPI_SETDRAGHEIGHT         77
1997 #define SPI_SETHANDHELD           78
1998 #define SPI_GETLOWPOWERTIMEOUT    79
1999 #define SPI_GETPOWEROFFTIMEOUT    80
2000 #define SPI_SETLOWPOWERTIMEOUT    81
2001 #define SPI_SETPOWEROFFTIMEOUT    82
2002 #define SPI_GETLOWPOWERACTIVE     83
2003 #define SPI_GETPOWEROFFACTIVE     84
2004 #define SPI_SETLOWPOWERACTIVE     85
2005 #define SPI_SETPOWEROFFACTIVE     86
2006 #define SPI_SETCURSORS            87
2007 #define SPI_SETICONS              88
2008 #define SPI_GETDEFAULTINPUTLANG   89
2009 #define SPI_SETDEFAULTINPUTLANG   90
2010 #define SPI_SETLANGTOGGLE         91
2011 #define SPI_GETWINDOWSEXTENSION   92
2012 #define SPI_SETMOUSETRAILS        93
2013 #define SPI_GETMOUSETRAILS        94
2014 #define SPI_SETSCREENSAVERRUNNING 97
2015 #define SPI_SCREENSAVERRUNNING    SPI_SETSCREENSAVERRUNNING
2016
2017 /* defines below are for all win versions (_WIN32_WINNT >= 0x0400) ||
2018  *                                        (_WIN32_WINDOWS > 0x0400) */
2019 #define SPI_GETMOUSEHOVERWIDTH    98
2020 #define SPI_SETMOUSEHOVERWIDTH    99
2021 #define SPI_GETMOUSEHOVERHEIGHT   100
2022 #define SPI_SETMOUSEHOVERHEIGHT   101
2023 #define SPI_GETMOUSEHOVERTIME     102
2024 #define SPI_SETMOUSEHOVERTIME     103
2025 #define SPI_GETWHEELSCROLLLINES   104
2026 #define SPI_SETWHEELSCROLLLINES   105
2027
2028 #define SPI_GETSHOWIMEUI          110
2029 #define SPI_SETSHOWIMEUI          111
2030
2031 /* defines below are for all win versions WINVER >= 0x0500 */
2032 #define SPI_GETMOUSESPEED         112
2033 #define SPI_SETMOUSESPEED         113
2034 #define SPI_GETSCREENSAVERRUNNING 114
2035
2036 #define SPI_GETACTIVEWINDOWTRACKING    0x1000
2037 #define SPI_SETACTIVEWINDOWTRACKING    0x1001
2038 #define SPI_GETMENUANIMATION           0x1002
2039 #define SPI_SETMENUANIMATION           0x1003
2040 #define SPI_GETCOMBOBOXANIMATION       0x1004
2041 #define SPI_SETCOMBOBOXANIMATION       0x1005
2042 #define SPI_GETLISTBOXSMOOTHSCROLLING  0x1006
2043 #define SPI_SETLISTBOXSMOOTHSCROLLING  0x1007
2044 #define SPI_GETGRADIENTCAPTIONS        0x1008
2045 #define SPI_SETGRADIENTCAPTIONS        0x1009
2046 #define SPI_GETMENUUNDERLINES          0x100A
2047 #define SPI_SETMENUUNDERLINES          0x100B
2048 #define SPI_GETACTIVEWNDTRKZORDER      0x100C
2049 #define SPI_SETACTIVEWNDTRKZORDER      0x100D
2050 #define SPI_GETHOTTRACKING             0x100E
2051 #define SPI_SETHOTTRACKING             0x100F
2052 #define SPI_GETFOREGROUNDLOCKTIMEOUT   0x2000
2053 #define SPI_SETFOREGROUNDLOCKTIMEOUT   0x2001
2054 #define SPI_GETACTIVEWNDTRKTIMEOUT     0x2002
2055 #define SPI_SETACTIVEWNDTRKTIMEOUT     0x2003
2056 #define SPI_GETFOREGROUNDFLASHCOUNT    0x2004
2057 #define SPI_SETFOREGROUNDFLASHCOUNT    0x2005
2058
2059 /* SystemParametersInfo flags */
2060
2061 #define SPIF_UPDATEINIFILE              1
2062 #define SPIF_SENDWININICHANGE           2
2063 #define SPIF_SENDCHANGE                 SPIF_SENDWININICHANGE
2064
2065 /* Window Styles */
2066 #define WS_OVERLAPPED    0x00000000L
2067 #define WS_POPUP         0x80000000L
2068 #define WS_CHILD         0x40000000L
2069 #define WS_MINIMIZE      0x20000000L
2070 #define WS_VISIBLE       0x10000000L
2071 #define WS_DISABLED      0x08000000L
2072 #define WS_CLIPSIBLINGS  0x04000000L
2073 #define WS_CLIPCHILDREN  0x02000000L
2074 #define WS_MAXIMIZE      0x01000000L
2075 #define WS_CAPTION       0x00C00000L
2076 #define WS_BORDER        0x00800000L
2077 #define WS_DLGFRAME      0x00400000L
2078 #define WS_VSCROLL       0x00200000L
2079 #define WS_HSCROLL       0x00100000L
2080 #define WS_SYSMENU       0x00080000L
2081 #define WS_THICKFRAME    0x00040000L
2082 #define WS_GROUP         0x00020000L
2083 #define WS_TABSTOP       0x00010000L
2084 #define WS_MINIMIZEBOX   0x00020000L
2085 #define WS_MAXIMIZEBOX   0x00010000L
2086 #define WS_TILED         WS_OVERLAPPED
2087 #define WS_ICONIC        WS_MINIMIZE
2088 #define WS_SIZEBOX       WS_THICKFRAME
2089 #define WS_OVERLAPPEDWINDOW (WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME| WS_MINIMIZEBOX | WS_MAXIMIZEBOX)
2090 #define WS_POPUPWINDOW (WS_POPUP | WS_BORDER | WS_SYSMENU)
2091 #define WS_CHILDWINDOW (WS_CHILD)
2092 #define WS_TILEDWINDOW (WS_OVERLAPPEDWINDOW)
2093
2094 /* Window extended styles */
2095 #define WS_EX_DLGMODALFRAME    0x00000001L
2096 #define WS_EX_DRAGDETECT       0x00000002L
2097 #define WS_EX_NOPARENTNOTIFY   0x00000004L
2098 #define WS_EX_TOPMOST          0x00000008L
2099 #define WS_EX_ACCEPTFILES      0x00000010L
2100 #define WS_EX_TRANSPARENT      0x00000020L
2101
2102 /* New Win95/WinNT4 styles */
2103 #define WS_EX_MDICHILD         0x00000040L
2104 #define WS_EX_TOOLWINDOW       0x00000080L
2105 #define WS_EX_WINDOWEDGE       0x00000100L
2106 #define WS_EX_CLIENTEDGE       0x00000200L
2107 #define WS_EX_CONTEXTHELP      0x00000400L
2108 #define WS_EX_RIGHT            0x00001000L
2109 #define WS_EX_LEFT             0x00000000L
2110 #define WS_EX_RTLREADING       0x00002000L
2111 #define WS_EX_LTRREADING       0x00000000L
2112 #define WS_EX_LEFTSCROLLBAR    0x00004000L
2113 #define WS_EX_RIGHTSCROLLBAR   0x00000000L
2114 #define WS_EX_CONTROLPARENT    0x00010000L
2115 #define WS_EX_STATICEDGE       0x00020000L
2116 #define WS_EX_APPWINDOW        0x00040000L
2117
2118 #define WS_EX_OVERLAPPEDWINDOW (WS_EX_WINDOWEDGE|WS_EX_CLIENTEDGE)
2119 #define WS_EX_PALETTEWINDOW    (WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW|WS_EX_TOPMOST)
2120
2121 /* Window scrolling */
2122 #define SW_SCROLLCHILDREN      0x0001
2123 #define SW_INVALIDATE          0x0002
2124 #define SW_ERASE               0x0004
2125
2126 /* CreateWindow() coordinates */
2127 #define CW_USEDEFAULT ((INT)0x80000000)
2128
2129 /* ChildWindowFromPointEx Flags */
2130 #define CWP_ALL                0x0000
2131 #define CWP_SKIPINVISIBLE      0x0001
2132 #define CWP_SKIPDISABLED       0x0002
2133 #define CWP_SKIPTRANSPARENT    0x0004
2134
2135   /* PeekMessage() options */
2136 #define PM_NOREMOVE     0x0000
2137 #define PM_REMOVE       0x0001
2138 #define PM_NOYIELD      0x0002
2139
2140 #define WM_SHOWWINDOW       0x0018
2141
2142 /* WM_SHOWWINDOW wParam codes */
2143 #define SW_PARENTCLOSING    1
2144 #define SW_OTHERMAXIMIZED   2
2145 #define SW_PARENTOPENING    3
2146 #define SW_OTHERRESTORED    4
2147
2148   /* ShowWindow() codes */
2149 #define SW_HIDE             0
2150 #define SW_SHOWNORMAL       1
2151 #define SW_NORMAL           1
2152 #define SW_SHOWMINIMIZED    2
2153 #define SW_SHOWMAXIMIZED    3
2154 #define SW_MAXIMIZE         3
2155 #define SW_SHOWNOACTIVATE   4
2156 #define SW_SHOW             5
2157 #define SW_MINIMIZE         6
2158 #define SW_SHOWMINNOACTIVE  7
2159 #define SW_SHOWNA           8
2160 #define SW_RESTORE          9
2161 #define SW_SHOWDEFAULT      10
2162 #define SW_MAX              10
2163 #define SW_NORMALNA         0xCC        /* undoc. flag in MinMaximize */
2164
2165   /* WM_SIZE message wParam values */
2166 #define SIZE_RESTORED        0
2167 #define SIZE_MINIMIZED       1
2168 #define SIZE_MAXIMIZED       2
2169 #define SIZE_MAXSHOW         3
2170 #define SIZE_MAXHIDE         4
2171 #define SIZENORMAL           SIZE_RESTORED
2172 #define SIZEICONIC           SIZE_MINIMIZED
2173 #define SIZEFULLSCREEN       SIZE_MAXIMIZED
2174 #define SIZEZOOMSHOW         SIZE_MAXSHOW
2175 #define SIZEZOOMHIDE         SIZE_MAXHIDE
2176
2177 /* SetWindowPos() and WINDOWPOS flags */
2178 #define SWP_NOSIZE          0x0001
2179 #define SWP_NOMOVE          0x0002
2180 #define SWP_NOZORDER        0x0004
2181 #define SWP_NOREDRAW        0x0008
2182 #define SWP_NOACTIVATE      0x0010
2183 #define SWP_FRAMECHANGED    0x0020  /* The frame changed: send WM_NCCALCSIZE */
2184 #define SWP_SHOWWINDOW      0x0040
2185 #define SWP_HIDEWINDOW      0x0080
2186 #define SWP_NOCOPYBITS      0x0100
2187 #define SWP_NOOWNERZORDER   0x0200  /* Don't do owner Z ordering */
2188
2189 #define SWP_DRAWFRAME       SWP_FRAMECHANGED
2190 #define SWP_NOREPOSITION    SWP_NOOWNERZORDER
2191
2192 #define SWP_NOSENDCHANGING  0x0400
2193 #define SWP_DEFERERASE      0x2000
2194
2195 #define HWND_DESKTOP        ((HWND)0)
2196 #define HWND_BROADCAST      ((HWND)0xffff)
2197
2198 /* SetWindowPos() hwndInsertAfter field values */
2199 #define HWND_TOP            ((HWND)0)
2200 #define HWND_BOTTOM         ((HWND)1)
2201 #define HWND_TOPMOST        ((HWND)-1)
2202 #define HWND_NOTOPMOST      ((HWND)-2)
2203
2204 #define MF_INSERT          0x0000
2205 #define MF_CHANGE          0x0080
2206 #define MF_APPEND          0x0100
2207 #define MF_DELETE          0x0200
2208 #define MF_REMOVE          0x1000
2209 #define MF_END             0x0080
2210
2211 #define MF_ENABLED         0x0000
2212 #define MF_GRAYED          0x0001
2213 #define MF_DISABLED        0x0002
2214 #define MF_STRING          0x0000
2215 #define MF_BITMAP          0x0004
2216 #define MF_UNCHECKED       0x0000
2217 #define MF_CHECKED         0x0008
2218 #define MF_POPUP           0x0010
2219 #define MF_MENUBARBREAK    0x0020
2220 #define MF_MENUBREAK       0x0040
2221 #define MF_UNHILITE        0x0000
2222 #define MF_HILITE          0x0080
2223 #define MF_OWNERDRAW       0x0100
2224 #define MF_USECHECKBITMAPS 0x0200
2225 #define MF_BYCOMMAND       0x0000
2226 #define MF_BYPOSITION      0x0400
2227 #define MF_SEPARATOR       0x0800
2228 #define MF_DEFAULT         0x1000
2229 #define MF_SYSMENU         0x2000
2230 #define MF_HELP            0x4000
2231 #define MF_RIGHTJUSTIFY    0x4000
2232 #define MF_MOUSESELECT     0x8000
2233
2234 /* Flags for extended menu item types.  */
2235 #define MFT_STRING         MF_STRING
2236 #define MFT_BITMAP         MF_BITMAP
2237 #define MFT_MENUBARBREAK   MF_MENUBARBREAK
2238 #define MFT_MENUBREAK      MF_MENUBREAK
2239 #define MFT_OWNERDRAW      MF_OWNERDRAW
2240 #define MFT_RADIOCHECK     0x00000200L
2241 #define MFT_SEPARATOR      MF_SEPARATOR
2242 #define MFT_RIGHTORDER     0x00002000L
2243 #define MFT_RIGHTJUSTIFY   MF_RIGHTJUSTIFY
2244
2245 /* Flags for extended menu item states.  */
2246 #define MFS_GRAYED          0x00000003L
2247 #define MFS_DISABLED        MFS_GRAYED
2248 #define MFS_CHECKED         MF_CHECKED
2249 #define MFS_HILITE          MF_HILITE
2250 #define MFS_ENABLED         MF_ENABLED
2251 #define MFS_UNCHECKED       MF_UNCHECKED
2252 #define MFS_UNHILITE        MF_UNHILITE
2253 #define MFS_DEFAULT         MF_DEFAULT
2254
2255 #define DT_TOP 0
2256 #define DT_LEFT 0
2257 #define DT_CENTER 1
2258 #define DT_RIGHT 2
2259 #define DT_VCENTER 4
2260 #define DT_BOTTOM 8
2261 #define DT_WORDBREAK 16
2262 #define DT_SINGLELINE 32
2263 #define DT_EXPANDTABS 64
2264 #define DT_TABSTOP 128
2265 #define DT_NOCLIP 256
2266 #define DT_EXTERNALLEADING 512
2267 #define DT_CALCRECT 1024
2268 #define DT_NOPREFIX 2048
2269 #define DT_INTERNAL 4096
2270
2271 /* DrawCaption()/DrawCaptionTemp() flags */
2272 #define DC_ACTIVE               0x0001
2273 #define DC_SMALLCAP             0x0002
2274 #define DC_ICON                 0x0004
2275 #define DC_TEXT                 0x0008
2276 #define DC_INBUTTON             0x0010
2277
2278 /* DrawEdge() flags */
2279 #define BDR_RAISEDOUTER    0x0001
2280 #define BDR_SUNKENOUTER    0x0002
2281 #define BDR_RAISEDINNER    0x0004
2282 #define BDR_SUNKENINNER    0x0008
2283
2284 #define BDR_OUTER          0x0003
2285 #define BDR_INNER          0x000c
2286 #define BDR_RAISED         0x0005
2287 #define BDR_SUNKEN         0x000a
2288
2289 #define EDGE_RAISED        (BDR_RAISEDOUTER | BDR_RAISEDINNER)
2290 #define EDGE_SUNKEN        (BDR_SUNKENOUTER | BDR_SUNKENINNER)
2291 #define EDGE_ETCHED        (BDR_SUNKENOUTER | BDR_RAISEDINNER)
2292 #define EDGE_BUMP          (BDR_RAISEDOUTER | BDR_SUNKENINNER)
2293
2294 /* border flags */
2295 #define BF_LEFT            0x0001
2296 #define BF_TOP             0x0002
2297 #define BF_RIGHT           0x0004
2298 #define BF_BOTTOM          0x0008
2299 #define BF_DIAGONAL        0x0010
2300 #define BF_MIDDLE          0x0800  /* Fill in the middle */
2301 #define BF_SOFT            0x1000  /* For softer buttons */
2302 #define BF_ADJUST          0x2000  /* Calculate the space left over */
2303 #define BF_FLAT            0x4000  /* For flat rather than 3D borders */
2304 #define BF_MONO            0x8000  /* For monochrome borders */
2305 #define BF_TOPLEFT         (BF_TOP | BF_LEFT)
2306 #define BF_TOPRIGHT        (BF_TOP | BF_RIGHT)
2307 #define BF_BOTTOMLEFT      (BF_BOTTOM | BF_LEFT)
2308 #define BF_BOTTOMRIGHT     (BF_BOTTOM | BF_RIGHT)
2309 #define BF_RECT            (BF_LEFT | BF_TOP | BF_RIGHT | BF_BOTTOM)
2310 #define BF_DIAGONAL_ENDTOPRIGHT     (BF_DIAGONAL | BF_TOP | BF_RIGHT)
2311 #define BF_DIAGONAL_ENDTOPLEFT      (BF_DIAGONAL | BF_TOP | BF_LEFT)
2312 #define BF_DIAGONAL_ENDBOTTOMLEFT   (BF_DIAGONAL | BF_BOTTOM | BF_LEFT)
2313 #define BF_DIAGONAL_ENDBOTTOMRIGHT  (BF_DIAGONAL | BF_BOTTOM | BF_RIGHT)
2314
2315 /* DrawFrameControl() uType's */
2316
2317 #define DFC_CAPTION             1
2318 #define DFC_MENU                2
2319 #define DFC_SCROLL              3
2320 #define DFC_BUTTON              4
2321
2322 /* uState's */
2323
2324 #define DFCS_CAPTIONCLOSE       0x0000
2325 #define DFCS_CAPTIONMIN         0x0001
2326 #define DFCS_CAPTIONMAX         0x0002
2327 #define DFCS_CAPTIONRESTORE     0x0003
2328 #define DFCS_CAPTIONHELP        0x0004          /* Windows 95 only */
2329
2330 #define DFCS_MENUARROW          0x0000
2331 #define DFCS_MENUCHECK          0x0001
2332 #define DFCS_MENUBULLET         0x0002
2333 #define DFCS_MENUARROWRIGHT     0x0004
2334
2335 #define DFCS_SCROLLUP            0x0000
2336 #define DFCS_SCROLLDOWN          0x0001
2337 #define DFCS_SCROLLLEFT          0x0002
2338 #define DFCS_SCROLLRIGHT         0x0003
2339 #define DFCS_SCROLLCOMBOBOX      0x0005
2340 #define DFCS_SCROLLSIZEGRIP      0x0008
2341 #define DFCS_SCROLLSIZEGRIPRIGHT 0x0010
2342
2343 #define DFCS_BUTTONCHECK        0x0000
2344 #define DFCS_BUTTONRADIOIMAGE   0x0001
2345 #define DFCS_BUTTONRADIOMASK    0x0002          /* to draw nonsquare button */
2346 #define DFCS_BUTTONRADIO        0x0004
2347 #define DFCS_BUTTON3STATE       0x0008
2348 #define DFCS_BUTTONPUSH         0x0010
2349
2350 /* additional state of the control */
2351
2352 #define DFCS_INACTIVE           0x0100
2353 #define DFCS_PUSHED             0x0200
2354 #define DFCS_CHECKED            0x0400
2355 #define DFCS_ADJUSTRECT         0x2000          /* exclude surrounding edge */
2356 #define DFCS_FLAT               0x4000
2357 #define DFCS_MONO               0x8000
2358
2359 /* Image type */
2360 #define DST_COMPLEX     0x0000
2361 #define DST_TEXT        0x0001
2362 #define DST_PREFIXTEXT  0x0002
2363 #define DST_ICON        0x0003
2364 #define DST_BITMAP      0x0004
2365
2366 /* State type */
2367 #define DSS_NORMAL      0x0000
2368 #define DSS_UNION       0x0010  /* Gray string appearance */
2369 #define DSS_DISABLED    0x0020
2370 #define DSS_DEFAULT     0x0040  /* Make it bold */
2371 #define DSS_MONO        0x0080
2372 #define DSS_RIGHT       0x8000
2373
2374 typedef struct
2375 {
2376     UINT      CtlType;
2377     UINT      CtlID;
2378     UINT      itemID;
2379     UINT      itemAction;
2380     UINT      itemState;
2381     HWND      hwndItem;
2382     HDC       hDC;
2383     RECT      rcItem WINE_PACKED;
2384     DWORD       itemData WINE_PACKED;
2385 } DRAWITEMSTRUCT, *PDRAWITEMSTRUCT, *LPDRAWITEMSTRUCT;
2386
2387
2388 typedef struct
2389 {
2390     UINT      CtlType;
2391     UINT      CtlID;
2392     UINT      itemID;
2393     UINT      itemWidth;
2394     UINT      itemHeight;
2395     DWORD       itemData;
2396 } MEASUREITEMSTRUCT, *PMEASUREITEMSTRUCT, *LPMEASUREITEMSTRUCT;
2397
2398
2399 typedef struct
2400 {
2401     UINT     CtlType;
2402     UINT     CtlID;
2403     UINT     itemID;
2404     HWND     hwndItem;
2405     DWORD      itemData;
2406 } DELETEITEMSTRUCT, *LPDELETEITEMSTRUCT;
2407
2408
2409 typedef struct
2410 {
2411     UINT      CtlType;
2412     UINT      CtlID;
2413     HWND      hwndItem;
2414     UINT      itemID1;
2415     DWORD       itemData1;
2416     UINT      itemID2;
2417     DWORD       itemData2;
2418     DWORD       dwLocaleId;
2419 } COMPAREITEMSTRUCT, *PCOMPAREITEMSTRUCT, *LPCOMPAREITEMSTRUCT;
2420
2421
2422 /* WM_KEYUP/DOWN/CHAR HIWORD(lParam) flags */
2423 #define KF_EXTENDED         0x0100
2424 #define KF_DLGMODE          0x0800
2425 #define KF_MENUMODE         0x1000
2426 #define KF_ALTDOWN          0x2000
2427 #define KF_REPEAT           0x4000
2428 #define KF_UP               0x8000
2429
2430 /* Virtual key codes */
2431 #define VK_LBUTTON          0x01
2432 #define VK_RBUTTON          0x02
2433 #define VK_CANCEL           0x03
2434 #define VK_MBUTTON          0x04
2435 /*                          0x05-0x07  Undefined */
2436 #define VK_BACK             0x08
2437 #define VK_TAB              0x09
2438 /*                          0x0A-0x0B  Undefined */
2439 #define VK_CLEAR            0x0C
2440 #define VK_RETURN           0x0D
2441 /*                          0x0E-0x0F  Undefined */
2442 #define VK_SHIFT            0x10
2443 #define VK_CONTROL          0x11
2444 #define VK_MENU             0x12
2445 #define VK_PAUSE            0x13
2446 #define VK_CAPITAL          0x14
2447 /*                          0x15-0x19  Reserved for Kanji systems */
2448 /*                          0x1A       Undefined */
2449 #define VK_ESCAPE           0x1B
2450 /*                          0x1C-0x1F  Reserved for Kanji systems */
2451 #define VK_SPACE            0x20
2452 #define VK_PRIOR            0x21
2453 #define VK_NEXT             0x22
2454 #define VK_END              0x23
2455 #define VK_HOME             0x24
2456 #define VK_LEFT             0x25
2457 #define VK_UP               0x26
2458 #define VK_RIGHT            0x27
2459 #define VK_DOWN             0x28
2460 #define VK_SELECT           0x29
2461 #define VK_PRINT            0x2A /* OEM specific in Windows 3.1 SDK */
2462 #define VK_EXECUTE          0x2B
2463 #define VK_SNAPSHOT         0x2C
2464 #define VK_INSERT           0x2D
2465 #define VK_DELETE           0x2E
2466 #define VK_HELP             0x2F
2467 #define VK_0                0x30
2468 #define VK_1                0x31
2469 #define VK_2                0x32
2470 #define VK_3                0x33
2471 #define VK_4                0x34
2472 #define VK_5                0x35
2473 #define VK_6                0x36
2474 #define VK_7                0x37
2475 #define VK_8                0x38
2476 #define VK_9                0x39
2477 /*                          0x3A-0x40  Undefined */
2478 #define VK_A                0x41
2479 #define VK_B                0x42
2480 #define VK_C                0x43
2481 #define VK_D                0x44
2482 #define VK_E                0x45
2483 #define VK_F                0x46
2484 #define VK_G                0x47
2485 #define VK_H                0x48
2486 #define VK_I                0x49
2487 #define VK_J                0x4A
2488 #define VK_K                0x4B
2489 #define VK_L                0x4C
2490 #define VK_M                0x4D
2491 #define VK_N                0x4E
2492 #define VK_O                0x4F
2493 #define VK_P                0x50
2494 #define VK_Q                0x51
2495 #define VK_R                0x52
2496 #define VK_S                0x53
2497 #define VK_T                0x54
2498 #define VK_U                0x55
2499 #define VK_V                0x56
2500 #define VK_W                0x57
2501 #define VK_X                0x58
2502 #define VK_Y                0x59
2503 #define VK_Z                0x5A
2504
2505 #define VK_LWIN             0x5B
2506 #define VK_RWIN             0x5C
2507 #define VK_APPS             0x5D
2508 /*                          0x5E-0x5F Unassigned */
2509 #define VK_NUMPAD0          0x60
2510 #define VK_NUMPAD1          0x61
2511 #define VK_NUMPAD2          0x62
2512 #define VK_NUMPAD3          0x63
2513 #define VK_NUMPAD4          0x64
2514 #define VK_NUMPAD5          0x65
2515 #define VK_NUMPAD6          0x66
2516 #define VK_NUMPAD7          0x67
2517 #define VK_NUMPAD8          0x68
2518 #define VK_NUMPAD9          0x69
2519 #define VK_MULTIPLY         0x6A
2520 #define VK_ADD              0x6B
2521 #define VK_SEPARATOR        0x6C
2522 #define VK_SUBTRACT         0x6D
2523 #define VK_DECIMAL          0x6E
2524 #define VK_DIVIDE           0x6F
2525 #define VK_F1               0x70
2526 #define VK_F2               0x71
2527 #define VK_F3               0x72
2528 #define VK_F4               0x73
2529 #define VK_F5               0x74
2530 #define VK_F6               0x75
2531 #define VK_F7               0x76
2532 #define VK_F8               0x77
2533 #define VK_F9               0x78
2534 #define VK_F10              0x79
2535 #define VK_F11              0x7A
2536 #define VK_F12              0x7B
2537 #define VK_F13              0x7C
2538 #define VK_F14              0x7D
2539 #define VK_F15              0x7E
2540 #define VK_F16              0x7F
2541 #define VK_F17              0x80
2542 #define VK_F18              0x81
2543 #define VK_F19              0x82
2544 #define VK_F20              0x83
2545 #define VK_F21              0x84
2546 #define VK_F22              0x85
2547 #define VK_F23              0x86
2548 #define VK_F24              0x87
2549 /*                          0x88-0x8F  Unassigned */
2550 #define VK_NUMLOCK          0x90
2551 #define VK_SCROLL           0x91
2552 /*                          0x92-0x9F  Unassigned */
2553 /*
2554  * differencing between right and left shift/control/alt key.
2555  * Used only by GetAsyncKeyState() and GetKeyState().
2556  */
2557 #define VK_LSHIFT           0xA0
2558 #define VK_RSHIFT           0xA1
2559 #define VK_LCONTROL         0xA2
2560 #define VK_RCONTROL         0xA3
2561 #define VK_LMENU            0xA4
2562 #define VK_RMENU            0xA5
2563 /*                          0xA6-0xB9  Unassigned */
2564 #define VK_OEM_1            0xBA
2565 #define VK_OEM_PLUS         0xBB
2566 #define VK_OEM_COMMA        0xBC
2567 #define VK_OEM_MINUS        0xBD
2568 #define VK_OEM_PERIOD       0xBE
2569 #define VK_OEM_2            0xBF
2570 #define VK_OEM_3            0xC0
2571 /*                          0xC1-0xDA  Unassigned */
2572 #define VK_OEM_4            0xDB
2573 #define VK_OEM_5            0xDC
2574 #define VK_OEM_6            0xDD
2575 #define VK_OEM_7            0xDE
2576 /*                          0xDF-0xE4  OEM specific */
2577
2578 #define VK_PROCESSKEY       0xE5
2579
2580 /*                          0xE6       OEM specific */
2581 /*                          0xE7-0xE8  Unassigned */
2582 /*                          0xE9-0xF5  OEM specific */
2583
2584 #define VK_ATTN             0xF6
2585 #define VK_CRSEL            0xF7
2586 #define VK_EXSEL            0xF8
2587 #define VK_EREOF            0xF9
2588 #define VK_PLAY             0xFA
2589 #define VK_ZOOM             0xFB
2590 #define VK_NONAME           0xFC
2591 #define VK_PA1              0xFD
2592 #define VK_OEM_CLEAR        0xFE
2593   
2594   /* Key status flags for mouse events */
2595 #define MK_LBUTTON          0x0001
2596 #define MK_RBUTTON          0x0002
2597 #define MK_SHIFT            0x0004
2598 #define MK_CONTROL          0x0008
2599 #define MK_MBUTTON          0x0010
2600
2601   /* Queue status flags */
2602 #define QS_KEY          0x0001
2603 #define QS_MOUSEMOVE    0x0002
2604 #define QS_MOUSEBUTTON  0x0004
2605 #define QS_MOUSE        (QS_MOUSEMOVE | QS_MOUSEBUTTON)
2606 #define QS_POSTMESSAGE  0x0008
2607 #define QS_TIMER        0x0010
2608 #define QS_PAINT        0x0020
2609 #define QS_SENDMESSAGE  0x0040
2610 #define QS_ALLINPUT     0x007f
2611
2612 #define DDL_READWRITE   0x0000
2613 #define DDL_READONLY    0x0001
2614 #define DDL_HIDDEN      0x0002
2615 #define DDL_SYSTEM      0x0004
2616 #define DDL_DIRECTORY   0x0010
2617 #define DDL_ARCHIVE     0x0020
2618
2619 #define DDL_POSTMSGS    0x2000
2620 #define DDL_DRIVES      0x4000
2621 #define DDL_EXCLUSIVE   0x8000
2622
2623   /* Shell hook values */
2624 #define HSHELL_WINDOWCREATED       1
2625 #define HSHELL_WINDOWDESTROYED     2
2626 #define HSHELL_ACTIVATESHELLWINDOW 3
2627
2628 /* Predefined Clipboard Formats */
2629 #define CF_TEXT              1
2630 #define CF_BITMAP            2
2631 #define CF_METAFILEPICT      3
2632 #define CF_SYLK              4
2633 #define CF_DIF               5
2634 #define CF_TIFF              6
2635 #define CF_OEMTEXT           7
2636 #define CF_DIB               8
2637 #define CF_PALETTE           9
2638 #define CF_PENDATA          10
2639 #define CF_RIFF             11
2640 #define CF_WAVE             12
2641 #define CF_ENHMETAFILE      14
2642
2643 #define CF_OWNERDISPLAY     0x0080
2644 #define CF_DSPTEXT          0x0081
2645 #define CF_DSPBITMAP        0x0082
2646 #define CF_DSPMETAFILEPICT  0x0083
2647
2648 /* "Private" formats don't get GlobalFree()'d */
2649 #define CF_PRIVATEFIRST     0x0200
2650 #define CF_PRIVATELAST      0x02FF
2651
2652 /* "GDIOBJ" formats do get DeleteObject()'d */
2653 #define CF_GDIOBJFIRST      0x0300
2654 #define CF_GDIOBJLAST       0x03FF
2655
2656 /* Clipboard command messages */
2657 #define WM_CUT              0x0300
2658 #define WM_COPY             0x0301
2659 #define WM_PASTE            0x0302
2660 #define WM_CLEAR            0x0303
2661 #define WM_UNDO             0x0304
2662
2663 /* Clipboard owner messages */
2664 #define WM_RENDERFORMAT     0x0305
2665 #define WM_RENDERALLFORMATS 0x0306
2666 #define WM_DESTROYCLIPBOARD 0x0307
2667
2668 /* Clipboard viewer messages */
2669 #define WM_DRAWCLIPBOARD    0x0308
2670 #define WM_PAINTCLIPBOARD   0x0309
2671 #define WM_SIZECLIPBOARD    0x030B
2672 #define WM_VSCROLLCLIPBOARD 0x030A
2673 #define WM_HSCROLLCLIPBOARD 0x030E
2674 #define WM_ASKCBFORMATNAME  0x030C
2675 #define WM_CHANGECBCHAIN    0x030D
2676
2677
2678
2679 /* DragObject stuff */
2680
2681 typedef struct
2682 {
2683     HWND16     hWnd;
2684     HANDLE16   hScope;
2685     WORD       wFlags;
2686     HANDLE16   hList;
2687     HANDLE16   hOfStruct;
2688     POINT16 pt WINE_PACKED;
2689     LONG       l WINE_PACKED;
2690 } DRAGINFO, *LPDRAGINFO;
2691
2692 #define DRAGOBJ_PROGRAM         0x0001
2693 #define DRAGOBJ_DATA            0x0002
2694 #define DRAGOBJ_DIRECTORY       0x0004
2695 #define DRAGOBJ_MULTIPLE        0x0008
2696 #define DRAGOBJ_EXTERNAL        0x8000
2697
2698 #define DRAG_PRINT              0x544E5250
2699 #define DRAG_FILE               0x454C4946
2700
2701 /* types of LoadImage */
2702 #define IMAGE_BITMAP    0
2703 #define IMAGE_ICON      1
2704 #define IMAGE_CURSOR    2
2705 #define IMAGE_ENHMETAFILE       3
2706
2707 /* loadflags to LoadImage */
2708 #define LR_DEFAULTCOLOR         0x0000
2709 #define LR_MONOCHROME           0x0001
2710 #define LR_COLOR                0x0002
2711 #define LR_COPYRETURNORG        0x0004
2712 #define LR_COPYDELETEORG        0x0008
2713 #define LR_LOADFROMFILE         0x0010
2714 #define LR_LOADTRANSPARENT      0x0020
2715 #define LR_DEFAULTSIZE          0x0040
2716 #define LR_VGA_COLOR            0x0080
2717 #define LR_LOADMAP3DCOLORS      0x1000
2718 #define LR_CREATEDIBSECTION     0x2000
2719 #define LR_COPYFROMRESOURCE     0x4000
2720 #define LR_SHARED               0x8000
2721
2722 /* Flags for DrawIconEx.  */
2723 #define DI_MASK                 1
2724 #define DI_IMAGE                2
2725 #define DI_NORMAL               (DI_MASK | DI_IMAGE)
2726 #define DI_COMPAT               4
2727 #define DI_DEFAULTSIZE          8
2728
2729   /* misc messages */
2730 #define WM_NULL             0x0000
2731 #define WM_CPL_LAUNCH       (WM_USER + 1000)
2732 #define WM_CPL_LAUNCHED     (WM_USER + 1001)
2733
2734 /* WM_NOTIFYFORMAT commands and return values */
2735 #define NFR_ANSI            1
2736 #define NFR_UNICODE         2
2737 #define NF_QUERY            3
2738 #define NF_REQUERY          4
2739
2740 #pragma pack(4)
2741 #define     EnumTaskWindows(handle,proc,lparam) \
2742             EnumThreadWindows(handle,proc,lparam)
2743 #define     OemToAnsiA OemToCharA
2744 #define     OemToAnsiW OemToCharW
2745 #define     OemToAnsi WINELIB_NAME_AW(OemToAnsi)
2746 #define     OemToAnsiBuffA OemToCharBuffA
2747 #define     OemToAnsiBuffW OemToCharBuffW
2748 #define     OemToAnsiBuff WINELIB_NAME_AW(OemToAnsiBuff)
2749 #define     AnsiToOemA CharToOemA
2750 #define     AnsiToOemW CharToOemW
2751 #define     AnsiToOem WINELIB_NAME_AW(AnsiToOem)
2752 #define     AnsiToOemBuffA CharToOemBuffA
2753 #define     AnsiToOemBuffW CharToOemBuffW
2754 #define     AnsiToOemBuff WINELIB_NAME_AW(AnsiToOemBuff)
2755 WORD        WINAPI CascadeWindows (HWND, UINT, const LPRECT,
2756                                    UINT, const HWND *);
2757 INT       WINAPI CopyAcceleratorTableA(HACCEL,LPACCEL,INT);
2758 INT       WINAPI CopyAcceleratorTableW(HACCEL,LPACCEL,INT);
2759 #define     CopyAcceleratorTable WINELIB_NAME_AW(CopyAcceleratorTable)
2760 HICON     WINAPI CreateIconIndirect(LPICONINFO);
2761 BOOL      WINAPI DestroyAcceleratorTable(HACCEL);
2762 BOOL      WINAPI EnumDisplayMonitors(HDC,LPRECT,MONITORENUMPROC,LPARAM);
2763 INT       WINAPI EnumPropsExA(HWND,PROPENUMPROCEXA,LPARAM);
2764 INT       WINAPI EnumPropsExW(HWND,PROPENUMPROCEXW,LPARAM);
2765 #define     EnumPropsEx WINELIB_NAME_AW(EnumPropsEx)
2766 BOOL      WINAPI EnumThreadWindows(DWORD,WNDENUMPROC,LPARAM);
2767 BOOL      WINAPI ExitWindowsEx(UINT,DWORD);
2768 BOOL      WINAPI GetIconInfo(HICON,LPICONINFO);
2769 DWORD       WINAPI GetMenuContextHelpId(HMENU);
2770 UINT      WINAPI GetMenuDefaultItem(HMENU,UINT,UINT);
2771 BOOL      WINAPI GetMenuItemInfoA(HMENU,UINT,BOOL,MENUITEMINFOA*);
2772 BOOL      WINAPI GetMenuItemInfoW(HMENU,UINT,BOOL,MENUITEMINFOW*);
2773 #define     GetMenuItemInfo WINELIB_NAME_AW(GetMenuItemInfo)
2774 BOOL      WINAPI GetMonitorInfoA(HMONITOR,LPMONITORINFO);
2775 BOOL      WINAPI GetMonitorInfoW(HMONITOR,LPMONITORINFO);
2776 #define     GetMonitorInfo WINELIB_NAME_AW(GetMonitorInfo)
2777 INT       WINAPI GetNumberFormatA(LCID,DWORD,LPCSTR,const NUMBERFMTA*,LPSTR,int);
2778 INT       WINAPI GetNumberFormatW(LCID,DWORD,LPCWSTR,const NUMBERFMTW*,LPWSTR,int);
2779 #define     GetNumberFormat WINELIB_NAME_AW(GetNumberFormat);
2780 DWORD       WINAPI GetWindowContextHelpId(HWND);
2781 DWORD       WINAPI GetWindowThreadProcessId(HWND,LPDWORD);
2782 BOOL      WINAPI IsWindowUnicode(HWND);
2783 HKL       WINAPI LoadKeyboardLayoutA(LPCSTR,UINT);
2784 HKL       WINAPI LoadKeyboardLayoutW(LPCWSTR,UINT);
2785 #define     LoadKeyboardLayout WINELIB_NAME_AW(LoadKeyboardLayout)
2786 INT       WINAPI MessageBoxExA(HWND,LPCSTR,LPCSTR,UINT,WORD);
2787 INT       WINAPI MessageBoxExW(HWND,LPCWSTR,LPCWSTR,UINT,WORD);
2788 #define     MessageBoxEx WINELIB_NAME_AW(MessageBoxEx)
2789 HMONITOR    WINAPI MonitorFromPoint(POINT,DWORD);
2790 HMONITOR    WINAPI MonitorFromRect(LPRECT,DWORD);
2791 HMONITOR    WINAPI MonitorFromWindow(HWND,DWORD);
2792 DWORD       WINAPI MsgWaitForMultipleObjects(DWORD,HANDLE*,BOOL,DWORD,DWORD);
2793 BOOL      WINAPI PaintDesktop(HDC);
2794 BOOL      WINAPI PostThreadMessageA(DWORD, UINT, WPARAM, LPARAM);
2795 BOOL      WINAPI PostThreadMessageW(DWORD, UINT, WPARAM, LPARAM);
2796 #define     PostThreadMessage WINELIB_NAME_AW(PostThreadMessage)
2797 UINT      WINAPI ReuseDDElParam(UINT,UINT,UINT,UINT,UINT);
2798 BOOL      WINAPI SendNotifyMessageA(HWND,UINT,WPARAM,LPARAM);
2799 BOOL      WINAPI SendNotifyMessageW(HWND,UINT,WPARAM,LPARAM);
2800 #define     SendNotifyMessage WINELIB_NAME_AW(SendNotifyMessage)
2801 VOID        WINAPI SetDebugErrorLevel(DWORD);
2802 VOID        WINAPI SetLastErrorEx(DWORD,DWORD);
2803 BOOL      WINAPI SetMenuDefaultItem(HMENU,UINT,UINT);
2804 BOOL      WINAPI SetMenuItemInfoA(HMENU,UINT,BOOL,const MENUITEMINFOA*);
2805 BOOL      WINAPI SetMenuItemInfoW(HMENU,UINT,BOOL,const MENUITEMINFOW*);
2806 #define     SetMenuItemInfo WINELIB_NAME_AW(SetMenuItemInfo)
2807 BOOL      WINAPI SetWindowContextHelpId(HWND,DWORD);
2808 WORD        WINAPI TileWindows (HWND, UINT, const LPRECT,
2809                                 UINT, const HWND *);
2810 BOOL      WINAPI TrackPopupMenuEx(HMENU,UINT,INT,INT,HWND,
2811                                     LPTPMPARAMS);
2812 UINT      WINAPI UnpackDDElParam(UINT,UINT,UINT*,UINT*);
2813 DWORD       WINAPI WaitForInputIdle(HANDLE,DWORD);
2814 VOID        WINAPI keybd_event(BYTE,BYTE,DWORD,DWORD);
2815 VOID        WINAPI mouse_event(DWORD,DWORD,DWORD,DWORD,DWORD);
2816
2817 /* Declarations for functions that are the same in Win16 and Win32 */
2818 VOID        WINAPI EndMenu(void);
2819 DWORD       WINAPI GetDialogBaseUnits(void);
2820 VOID        WINAPI GetKeyboardState(LPBYTE);
2821 DWORD       WINAPI GetMenuCheckMarkDimensions(void);
2822 LONG        WINAPI GetMessageExtraInfo(void);
2823 DWORD       WINAPI GetMessagePos(void);
2824 LONG        WINAPI GetMessageTime(void);
2825 DWORD       WINAPI GetTickCount(void);
2826 ATOM        WINAPI GlobalDeleteAtom(ATOM);
2827 DWORD       WINAPI OemKeyScan(WORD);
2828 VOID        WINAPI ReleaseCapture(void);
2829 VOID        WINAPI SetKeyboardState(LPBYTE);
2830 VOID        WINAPI WaitMessage(VOID);
2831
2832
2833 /* Declarations for functions that change between Win16 and Win32 */
2834
2835 BOOL      WINAPI AdjustWindowRect(LPRECT,DWORD,BOOL);
2836 BOOL      WINAPI AdjustWindowRectEx(LPRECT,DWORD,BOOL,DWORD);
2837 #define     AnsiLowerA CharLowerA
2838 #define     AnsiLowerW CharLowerW
2839 #define     AnsiLower WINELIB_NAME_AW(AnsiLower)
2840 #define     AnsiLowerBuffA CharLowerBuffA
2841 #define     AnsiLowerBuffW CharLowerBuffW
2842 #define     AnsiLowerBuff WINELIB_NAME_AW(AnsiLowerBuff)
2843 #define     AnsiNextA CharNextA
2844 #define     AnsiNextW CharNextW
2845 #define     AnsiNext WINELIB_NAME_AW(AnsiNext)
2846 #define     AnsiPrevA CharPrevA
2847 #define     AnsiPrevW CharPrevW
2848 #define     AnsiPrev WINELIB_NAME_AW(AnsiPrev)
2849 #define     AnsiUpperA CharUpperA
2850 #define     AnsiUpperW CharUpperW
2851 #define     AnsiUpper WINELIB_NAME_AW(AnsiUpper)
2852 #define     AnsiUpperBuffA CharUpperBuffA
2853 #define     AnsiUpperBuffW CharUpperBuffW
2854 #define     AnsiUpperBuff WINELIB_NAME_AW(AnsiUpperBuff)
2855 BOOL      WINAPI AnyPopup(void);
2856 BOOL      WINAPI AppendMenuA(HMENU,UINT,UINT,LPCSTR);
2857 BOOL      WINAPI AppendMenuW(HMENU,UINT,UINT,LPCWSTR);
2858 #define     AppendMenu WINELIB_NAME_AW(AppendMenu)
2859 UINT      WINAPI ArrangeIconicWindows(HWND);
2860 HDWP      WINAPI BeginDeferWindowPos(INT);
2861 HDC       WINAPI BeginPaint(HWND,LPPAINTSTRUCT);
2862 BOOL      WINAPI BringWindowToTop(HWND);
2863 BOOL      WINAPI CallMsgFilterA(LPMSG,INT);
2864 BOOL      WINAPI CallMsgFilterW(LPMSG,INT);
2865 #define     CallMsgFilter WINELIB_NAME_AW(CallMsgFilter)
2866 LRESULT     WINAPI CallNextHookEx(HHOOK,INT,WPARAM,LPARAM);
2867 LRESULT     WINAPI CallWindowProcA(WNDPROC,HWND,UINT,WPARAM,LPARAM);
2868 LRESULT     WINAPI CallWindowProcW(WNDPROC,HWND,UINT,WPARAM,LPARAM);
2869 #define     CallWindowProc WINELIB_NAME_AW(CallWindowProc)
2870 BOOL      WINAPI ChangeClipboardChain(HWND,HWND);
2871 BOOL      WINAPI ChangeMenuA(HMENU,UINT,LPCSTR,UINT,UINT);
2872 BOOL      WINAPI ChangeMenuW(HMENU,UINT,LPCWSTR,UINT,UINT);
2873 #define     ChangeMenu WINELIB_NAME_AW(ChangeMenu)
2874 LPSTR       WINAPI CharLowerA(LPSTR);
2875 LPWSTR      WINAPI CharLowerW(LPWSTR);
2876 #define     CharLower WINELIB_NAME_AW(CharLower)
2877 DWORD       WINAPI CharLowerBuffA(LPSTR,DWORD);
2878 DWORD       WINAPI CharLowerBuffW(LPWSTR,DWORD);
2879 #define     CharLowerBuff WINELIB_NAME_AW(CharLowerBuff)
2880 LPSTR       WINAPI CharNextA(LPCSTR);
2881 LPWSTR      WINAPI CharNextW(LPCWSTR);
2882 #define     CharNext WINELIB_NAME_AW(CharNext)
2883 LPSTR       WINAPI CharNextExA(WORD,LPCSTR,DWORD);
2884 LPWSTR      WINAPI CharNextExW(WORD,LPCWSTR,DWORD);
2885 #define     CharNextEx WINELIB_NAME_AW(CharNextEx)
2886 LPSTR       WINAPI CharPrevA(LPCSTR,LPCSTR);
2887 LPWSTR      WINAPI CharPrevW(LPCWSTR,LPCWSTR);
2888 #define     CharPrev WINELIB_NAME_AW(CharPrev)
2889 LPSTR       WINAPI CharPrevExA(WORD,LPCSTR,LPCSTR,DWORD);
2890 LPWSTR      WINAPI CharPrevExW(WORD,LPCWSTR,LPCWSTR,DWORD);
2891 #define     CharPrevEx WINELIB_NAME_AW(CharPrevEx)
2892 LPSTR       WINAPI CharUpperA(LPSTR);
2893 LPWSTR      WINAPI CharUpperW(LPWSTR);
2894 #define     CharUpper WINELIB_NAME_AW(CharUpper)
2895 DWORD       WINAPI CharUpperBuffA(LPSTR,DWORD);
2896 DWORD       WINAPI CharUpperBuffW(LPWSTR,DWORD);
2897 #define     CharUpperBuff WINELIB_NAME_AW(CharUpperBuff)
2898 BOOL      WINAPI CharToOemA(LPCSTR,LPSTR);
2899 BOOL      WINAPI CharToOemW(LPCWSTR,LPSTR);
2900 #define     CharToOem WINELIB_NAME_AW(CharToOem)
2901 BOOL      WINAPI CharToOemBuffA(LPCSTR,LPSTR,DWORD);
2902 BOOL      WINAPI CharToOemBuffW(LPCWSTR,LPSTR,DWORD);
2903 #define     CharToOemBuff WINELIB_NAME_AW(CharToOemBuff)
2904 BOOL      WINAPI CheckDlgButton(HWND,INT,UINT);
2905 DWORD       WINAPI CheckMenuItem(HMENU,UINT,UINT);
2906 BOOL      WINAPI CheckMenuRadioItem(HMENU,UINT,UINT,UINT,UINT);
2907 BOOL      WINAPI CheckRadioButton(HWND,UINT,UINT,UINT);
2908 HWND      WINAPI ChildWindowFromPoint(HWND,POINT);
2909 HWND      WINAPI ChildWindowFromPointEx(HWND,POINT,UINT);
2910 BOOL      WINAPI ClearCommBreak(HANDLE);
2911 BOOL      WINAPI ClientToScreen(HWND,LPPOINT);
2912 BOOL      WINAPI ClipCursor(const RECT*);
2913 BOOL      WINAPI CloseClipboard(void);
2914 BOOL      WINAPI CloseWindow(HWND);
2915 #define     CopyCursor(cur) ((HCURSOR)CopyIcon((HICON)(cur)))
2916 HICON     WINAPI CopyIcon(HICON);
2917 HICON     WINAPI CopyImage(HANDLE,UINT,INT,INT,UINT);
2918 BOOL      WINAPI CopyRect(RECT*,const RECT*);
2919 INT       WINAPI CountClipboardFormats(void);
2920 BOOL      WINAPI CreateCaret(HWND,HBITMAP,INT,INT);
2921 HCURSOR   WINAPI CreateCursor(HINSTANCE,INT,INT,INT,INT,LPCVOID,LPCVOID);
2922 #define     CreateDialogA(inst,ptr,hwnd,dlg) \
2923            CreateDialogParamA(inst,ptr,hwnd,dlg,0)
2924 #define     CreateDialogW(inst,ptr,hwnd,dlg) \
2925            CreateDialogParamW(inst,ptr,hwnd,dlg,0)
2926 #define     CreateDialog WINELIB_NAME_AW(CreateDialog)
2927 #define     CreateDialogIndirectA(inst,ptr,hwnd,dlg) \
2928            CreateDialogIndirectParamA(inst,ptr,hwnd,dlg,0)
2929 #define     CreateDialogIndirectW(inst,ptr,hwnd,dlg) \
2930            CreateDialogIndirectParamW(inst,ptr,hwnd,dlg,0)
2931 #define     CreateDialogIndirect WINELIB_NAME_AW(CreateDialogIndirect)
2932 HWND      WINAPI CreateDialogIndirectParamA(HINSTANCE,LPCVOID,HWND,
2933                                                 DLGPROC,LPARAM);
2934 HWND      WINAPI CreateDialogIndirectParamW(HINSTANCE,LPCVOID,HWND,
2935                                                 DLGPROC,LPARAM);
2936 #define     CreateDialogIndirectParam WINELIB_NAME_AW(CreateDialogIndirectParam)
2937 HWND      WINAPI CreateDialogParamA(HINSTANCE,LPCSTR,HWND,DLGPROC,LPARAM);
2938 HWND      WINAPI CreateDialogParamW(HINSTANCE,LPCWSTR,HWND,DLGPROC,LPARAM);
2939 #define     CreateDialogParam WINELIB_NAME_AW(CreateDialogParam)
2940 HICON     WINAPI CreateIcon(HINSTANCE,INT,INT,BYTE,BYTE,LPCVOID,LPCVOID);
2941 HICON     WINAPI CreateIconFromResource(LPBYTE,UINT,BOOL,DWORD);
2942 HICON     WINAPI CreateIconFromResourceEx(LPBYTE,UINT,BOOL,DWORD,INT,INT,UINT);
2943 HMENU     WINAPI CreateMenu(void);
2944 HMENU     WINAPI CreatePopupMenu(void);
2945 #define     CreateWindowA(className,titleName,style,x,y,width,height,\
2946                             parent,menu,instance,param) \
2947             CreateWindowExA(0,className,titleName,style,x,y,width,height,\
2948                               parent,menu,instance,param)
2949 #define     CreateWindowW(className,titleName,style,x,y,width,height,\
2950                             parent,menu,instance,param) \
2951             CreateWindowExW(0,className,titleName,style,x,y,width,height,\
2952                               parent,menu,instance,param)
2953 #define     CreateWindow WINELIB_NAME_AW(CreateWindow)
2954 HWND      WINAPI CreateWindowExA(DWORD,LPCSTR,LPCSTR,DWORD,INT,INT,
2955                                 INT,INT,HWND,HMENU,HINSTANCE,LPVOID);
2956 HWND      WINAPI CreateWindowExW(DWORD,LPCWSTR,LPCWSTR,DWORD,INT,INT,
2957                                 INT,INT,HWND,HMENU,HINSTANCE,LPVOID);
2958 #define     CreateWindowEx WINELIB_NAME_AW(CreateWindowEx)
2959 HWND      WINAPI CreateMDIWindowA(LPCSTR,LPCSTR,DWORD,INT,INT,
2960                                 INT,INT,HWND,HINSTANCE,LPARAM);
2961 HWND      WINAPI CreateMDIWindowW(LPCWSTR,LPCWSTR,DWORD,INT,INT,
2962                                 INT,INT,HWND,HINSTANCE,LPARAM);
2963 #define     CreateMDIWindow WINELIB_NAME_AW(CreateMDIWindow)
2964 LRESULT     WINAPI DefDlgProcA(HWND,UINT,WPARAM,LPARAM);
2965 LRESULT     WINAPI DefDlgProcW(HWND,UINT,WPARAM,LPARAM);
2966 #define     DefDlgProc WINELIB_NAME_AW(DefDlgProc)
2967 HDWP      WINAPI DeferWindowPos(HDWP,HWND,HWND,INT,INT,INT,INT,UINT);
2968 LRESULT     WINAPI DefFrameProcA(HWND,HWND,UINT,WPARAM,LPARAM);
2969 LRESULT     WINAPI DefFrameProcW(HWND,HWND,UINT,WPARAM,LPARAM);
2970 #define     DefFrameProc WINELIB_NAME_AW(DefFrameProc)
2971 #define     DefHookProc(code,wparam,lparam,phhook) \
2972             CallNextHookEx(*(phhook),code,wparam,lparam)
2973 LRESULT     WINAPI DefMDIChildProcA(HWND,UINT,WPARAM,LPARAM);
2974 LRESULT     WINAPI DefMDIChildProcW(HWND,UINT,WPARAM,LPARAM);
2975 #define     DefMDIChildProc WINELIB_NAME_AW(DefMDIChildProc)
2976 LRESULT     WINAPI DefWindowProcA(HWND,UINT,WPARAM,LPARAM);
2977 LRESULT     WINAPI DefWindowProcW(HWND,UINT,WPARAM,LPARAM);
2978 #define     DefWindowProc WINELIB_NAME_AW(DefWindowProc)
2979 BOOL      WINAPI DeleteMenu(HMENU,UINT,UINT);
2980 BOOL      WINAPI DestroyCaret(void);
2981 BOOL      WINAPI DestroyCursor(HCURSOR);
2982 BOOL      WINAPI DestroyIcon(HICON);
2983 BOOL      WINAPI DestroyMenu(HMENU);
2984 BOOL      WINAPI DestroyWindow(HWND);
2985 #define     DialogBoxA(inst,template,owner,func) \
2986             DialogBoxParamA(inst,template,owner,func,0)
2987 #define     DialogBoxW(inst,template,owner,func) \
2988             DialogBoxParamW(inst,template,owner,func,0)
2989 #define     DialogBox WINELIB_NAME_AW(DialogBox)
2990 #define     DialogBoxIndirectA(inst,template,owner,func) \
2991             DialogBoxIndirectParamA(inst,template,owner,func,0)
2992 #define     DialogBoxIndirectW(inst,template,owner,func) \
2993             DialogBoxIndirectParamW(inst,template,owner,func,0)
2994 #define     DialogBoxIndirect WINELIB_NAME_AW(DialogBoxIndirect)
2995 INT       WINAPI DialogBoxIndirectParamA(HINSTANCE,LPCVOID,HWND,DLGPROC,LPARAM);
2996 INT       WINAPI DialogBoxIndirectParamW(HINSTANCE,LPCVOID,HWND,DLGPROC,LPARAM);
2997 #define     DialogBoxIndirectParam WINELIB_NAME_AW(DialogBoxIndirectParam)
2998 INT       WINAPI DialogBoxParamA(HINSTANCE,LPCSTR,HWND,DLGPROC,LPARAM);
2999 INT       WINAPI DialogBoxParamW(HINSTANCE,LPCWSTR,HWND,DLGPROC,LPARAM);
3000 #define     DialogBoxParam WINELIB_NAME_AW(DialogBoxParam)
3001 LONG        WINAPI DispatchMessageA(const MSG*);
3002 LONG        WINAPI DispatchMessageW(const MSG*);
3003 #define     DispatchMessage WINELIB_NAME_AW(DispatchMessage)
3004 INT       WINAPI DlgDirListA(HWND,LPSTR,INT,INT,UINT);
3005 INT       WINAPI DlgDirListW(HWND,LPWSTR,INT,INT,UINT);
3006 #define     DlgDirList WINELIB_NAME_AW(DlgDirList)
3007 INT       WINAPI DlgDirListComboBoxA(HWND,LPSTR,INT,INT,UINT);
3008 INT       WINAPI DlgDirListComboBoxW(HWND,LPWSTR,INT,INT,UINT);
3009 #define     DlgDirListComboBox WINELIB_NAME_AW(DlgDirListComboBox)
3010 BOOL      WINAPI DlgDirSelectComboBoxExA(HWND,LPSTR,INT,INT);
3011 BOOL      WINAPI DlgDirSelectComboBoxExW(HWND,LPWSTR,INT,INT);
3012 #define     DlgDirSelectComboBoxEx WINELIB_NAME_AW(DlgDirSelectComboBoxEx)
3013 BOOL      WINAPI DlgDirSelectExA(HWND,LPSTR,INT,INT);
3014 BOOL      WINAPI DlgDirSelectExW(HWND,LPWSTR,INT,INT);
3015 #define     DlgDirSelectEx WINELIB_NAME_AW(DlgDirSelectEx)
3016 BOOL      WINAPI DragDetect(HWND,POINT);
3017 DWORD       WINAPI DragObject(HWND,HWND,UINT,DWORD,HCURSOR);
3018 BOOL      WINAPI DrawAnimatedRects(HWND,int,const RECT*,const RECT*);
3019 BOOL      WINAPI DrawCaption(HWND,HDC,const RECT*,UINT);
3020 BOOL      WINAPI DrawCaptionTempA(HWND,HDC,const RECT*,HFONT,HICON,LPCSTR,UINT);
3021 BOOL      WINAPI DrawCaptionTempW(HWND,HDC,const RECT*,HFONT,HICON,LPCWSTR,UINT);
3022 #define     DrawCaptionTemp WINELIB_NAME_AW(DrawCaptionTemp)
3023 BOOL      WINAPI DrawEdge(HDC,LPRECT,UINT,UINT);
3024 BOOL      WINAPI DrawFocusRect(HDC,const RECT*);
3025 BOOL      WINAPI DrawFrameControl(HDC,LPRECT,UINT,UINT);
3026 BOOL      WINAPI DrawIcon(HDC,INT,INT,HICON);
3027 BOOL      WINAPI DrawIconEx(HDC,INT,INT,HICON,INT,INT,
3028                                 UINT,HBRUSH,UINT);
3029 BOOL      WINAPI DrawMenuBar(HWND);
3030 BOOL      WINAPI DrawStateA(HDC,HBRUSH,DRAWSTATEPROC,LPARAM,WPARAM,INT,INT,INT,INT,UINT);
3031 BOOL      WINAPI DrawStateW(HDC,HBRUSH,DRAWSTATEPROC,LPARAM,WPARAM,INT,INT,INT,INT,UINT);
3032 #define     DrawState WINELIB_NAME_AW(DrawState)
3033 INT       WINAPI DrawTextA(HDC,LPCSTR,INT,LPRECT,UINT);
3034 INT       WINAPI DrawTextW(HDC,LPCWSTR,INT,LPRECT,UINT);
3035 #define     DrawText WINELIB_NAME_AW(DrawText)
3036 BOOL      WINAPI EmptyClipboard(void);
3037 UINT      WINAPI EnableMenuItem(HMENU,UINT,UINT);
3038 BOOL      WINAPI EnableScrollBar(HWND,INT,UINT);
3039 BOOL      WINAPI EnableWindow(HWND,BOOL);
3040 BOOL      WINAPI EndDeferWindowPos(HDWP);
3041 BOOL      WINAPI EndDialog(HWND,INT);
3042 BOOL      WINAPI EndPaint(HWND,const PAINTSTRUCT*);
3043 BOOL      WINAPI EnumChildWindows(HWND,WNDENUMPROC,LPARAM);
3044 UINT      WINAPI EnumClipboardFormats(UINT);
3045 INT       WINAPI EnumPropsA(HWND,PROPENUMPROCA);
3046 INT       WINAPI EnumPropsW(HWND,PROPENUMPROCW);
3047 #define     EnumProps WINELIB_NAME_AW(EnumProps)
3048 BOOL      WINAPI EnumWindows(WNDENUMPROC,LPARAM);
3049 BOOL      WINAPI EqualRect(const RECT*,const RECT*);
3050 BOOL      WINAPI EscapeCommFunction(HANDLE,UINT);
3051 INT       WINAPI ExcludeUpdateRgn(HDC,HWND);
3052 #define     ExitWindows(a,b) ExitWindowsEx(EWX_LOGOFF,0xffffffff)
3053 INT       WINAPI FillRect(HDC,const RECT*,HBRUSH);
3054 HWND      WINAPI FindWindowA(LPCSTR,LPCSTR);
3055 HWND      WINAPI FindWindowW(LPCWSTR,LPCWSTR);
3056 #define     FindWindow WINELIB_NAME_AW(FindWindow)
3057 HWND      WINAPI FindWindowExA(HWND,HWND,LPCSTR,LPCSTR);
3058 HWND      WINAPI FindWindowExW(HWND,HWND,LPCWSTR,LPCWSTR);
3059 #define     FindWindowEx WINELIB_NAME_AW(FindWindowEx)
3060 BOOL      WINAPI FlashWindow(HWND,BOOL);
3061 INT       WINAPI FrameRect(HDC,const RECT*,HBRUSH);
3062 HWND      WINAPI GetActiveWindow(void);
3063 DWORD       WINAPI GetAppCompatFlags(HTASK);
3064 WORD        WINAPI GetAsyncKeyState(INT);
3065 HWND      WINAPI GetCapture(void);
3066 UINT      WINAPI GetCaretBlinkTime(void);
3067 BOOL      WINAPI GetCaretPos(LPPOINT);
3068 BOOL      WINAPI GetClassInfoA(HINSTANCE,LPCSTR,WNDCLASSA *);
3069 BOOL      WINAPI GetClassInfoW(HINSTANCE,LPCWSTR,WNDCLASSW *);
3070 #define     GetClassInfo WINELIB_NAME_AW(GetClassInfo)
3071 BOOL      WINAPI GetClassInfoExA(HINSTANCE,LPCSTR,WNDCLASSEXA *);
3072 BOOL      WINAPI GetClassInfoExW(HINSTANCE,LPCWSTR,WNDCLASSEXW *);
3073 #define     GetClassInfoEx WINELIB_NAME_AW(GetClassInfoEx)
3074 LONG        WINAPI GetClassLongA(HWND,INT);
3075 LONG        WINAPI GetClassLongW(HWND,INT);
3076 #define     GetClassLong WINELIB_NAME_AW(GetClassLong)
3077 INT       WINAPI GetClassNameA(HWND,LPSTR,INT);
3078 INT       WINAPI GetClassNameW(HWND,LPWSTR,INT);
3079 #define     GetClassName WINELIB_NAME_AW(GetClassName)
3080 WORD        WINAPI GetClassWord(HWND,INT);
3081 BOOL      WINAPI GetClientRect(HWND,LPRECT);
3082 HANDLE    WINAPI GetClipboardData(UINT);
3083 INT       WINAPI GetClipboardFormatNameA(UINT,LPSTR,INT);
3084 INT       WINAPI GetClipboardFormatNameW(UINT,LPWSTR,INT);
3085 #define     GetClipboardFormatName WINELIB_NAME_AW(GetClipboardFormatName)
3086 HWND      WINAPI GetClipboardOwner(void);
3087 HWND      WINAPI GetClipboardViewer(void);
3088 BOOL      WINAPI GetClipCursor(LPRECT);
3089 #define     GetCurrentTime() GetTickCount()
3090 HCURSOR   WINAPI GetCursor(void);
3091 BOOL      WINAPI GetCursorPos(LPPOINT);
3092 HDC       WINAPI GetDC(HWND);
3093 HDC       WINAPI GetDCEx(HWND,HRGN,DWORD);
3094 HWND      WINAPI GetDesktopWindow(void);
3095 INT       WINAPI GetDlgCtrlID(HWND);
3096 HWND      WINAPI GetDlgItem(HWND,INT);
3097 UINT      WINAPI GetDlgItemInt(HWND,INT,BOOL*,BOOL);
3098 INT       WINAPI GetDlgItemTextA(HWND,INT,LPSTR,UINT);
3099 INT       WINAPI GetDlgItemTextW(HWND,INT,LPWSTR,UINT);
3100 #define     GetDlgItemText WINELIB_NAME_AW(GetDlgItemText)
3101 UINT      WINAPI GetDoubleClickTime(void);
3102 HWND      WINAPI GetFocus(void);
3103 HWND      WINAPI GetForegroundWindow(void);
3104 BOOL      WINAPI GetInputState(void);
3105 UINT      WINAPI GetInternalWindowPos(HWND,LPRECT,LPPOINT);
3106 UINT      WINAPI GetKBCodePage(void);
3107 INT       WINAPI GetKeyboardType(INT);
3108 INT       WINAPI GetKeyNameTextA(LONG,LPSTR,INT);
3109 INT       WINAPI GetKeyNameTextW(LONG,LPWSTR,INT);
3110 #define     GetKeyNameText WINELIB_NAME_AW(GetKeyNameText)
3111 INT       WINAPI GetKeyboardLayoutNameA(LPSTR);
3112 INT       WINAPI GetKeyboardLayoutNameW(LPWSTR);
3113 #define     GetKeyboardLayoutName WINELIB_NAME_AW(GetKeyboardLayoutName)
3114 INT16       WINAPI GetKeyState(INT);
3115 HWND      WINAPI GetLastActivePopup(HWND);
3116 HMENU     WINAPI GetMenu(HWND);
3117 INT       WINAPI GetMenuItemCount(HMENU);
3118 UINT      WINAPI GetMenuItemID(HMENU,INT);
3119 BOOL      WINAPI GetMenuItemRect(HWND,HMENU,UINT,LPRECT);
3120 UINT      WINAPI GetMenuState(HMENU,UINT,UINT);
3121 INT       WINAPI GetMenuStringA(HMENU,UINT,LPSTR,INT,UINT);
3122 INT       WINAPI GetMenuStringW(HMENU,UINT,LPWSTR,INT,UINT);
3123 #define     GetMenuString WINELIB_NAME_AW(GetMenuString)
3124 BOOL      WINAPI GetMessageA(LPMSG,HWND,UINT,UINT);
3125 BOOL      WINAPI GetMessageW(LPMSG,HWND,UINT,UINT);
3126 #define     GetMessage WINELIB_NAME_AW(GetMessage)
3127 HWND      WINAPI GetNextDlgGroupItem(HWND,HWND,BOOL);
3128 HWND      WINAPI GetNextDlgTabItem(HWND,HWND,BOOL);
3129 #define     GetNextWindow GetWindow
3130 HWND      WINAPI GetOpenClipboardWindow(void);
3131 HWND      WINAPI GetParent(HWND);
3132 INT       WINAPI GetPriorityClipboardFormat(UINT*,INT);
3133 HANDLE    WINAPI GetPropA(HWND,LPCSTR);
3134 HANDLE    WINAPI GetPropW(HWND,LPCWSTR);
3135 #define     GetProp WINELIB_NAME_AW(GetProp)
3136 DWORD       WINAPI GetQueueStatus(UINT);
3137 BOOL      WINAPI GetScrollInfo(HWND,INT,LPSCROLLINFO);
3138 INT       WINAPI GetScrollPos(HWND,INT);
3139 BOOL      WINAPI GetScrollRange(HWND,INT,LPINT,LPINT);
3140 HWND      WINAPI GetShellWindow(void);
3141 HMENU     WINAPI GetSubMenu(HMENU,INT);
3142 COLORREF    WINAPI GetSysColor(INT);
3143 HBRUSH    WINAPI GetSysColorBrush(INT);
3144 #define     GetSysModalWindow() ((HWND)0)
3145 HMENU     WINAPI GetSystemMenu(HWND,BOOL);
3146 INT       WINAPI GetSystemMetrics(INT);
3147 DWORD       WINAPI GetTabbedTextExtentA(HDC,LPCSTR,INT,INT,const INT*);
3148 DWORD       WINAPI GetTabbedTextExtentW(HDC,LPCWSTR,INT,INT,const INT*);
3149 #define     GetTabbedTextExtent WINELIB_NAME_AW(GetTabbedTextExtent)
3150 HWND      WINAPI GetTopWindow(HWND);
3151 BOOL      WINAPI GetUpdateRect(HWND,LPRECT,BOOL);
3152 INT       WINAPI GetUpdateRgn(HWND,HRGN,BOOL);
3153 HWND      WINAPI GetWindow(HWND,WORD);
3154 HDC       WINAPI GetWindowDC(HWND);
3155 LONG        WINAPI GetWindowLongA(HWND,INT);
3156 LONG        WINAPI GetWindowLongW(HWND,INT);
3157 #define     GetWindowLong WINELIB_NAME_AW(GetWindowLong)
3158 BOOL      WINAPI GetWindowPlacement(HWND,LPWINDOWPLACEMENT);
3159 BOOL      WINAPI GetWindowRect(HWND,LPRECT);
3160 INT       WINAPI GetWindowRgn(HWND,HRGN);
3161 #define     GetWindowTask(hwnd) ((HTASK)GetWindowThreadProcessId(hwnd,NULL))
3162 INT       WINAPI GetWindowTextA(HWND,LPSTR,INT);
3163 INT       WINAPI GetWindowTextW(HWND,LPWSTR,INT);
3164 #define     GetWindowText WINELIB_NAME_AW(GetWindowText)
3165 INT       WINAPI GetWindowTextLengthA(HWND);
3166 INT       WINAPI GetWindowTextLengthW(HWND);
3167 #define     GetWindowTextLength WINELIB_NAME_AW(GetWindowTextLength)
3168 WORD        WINAPI GetWindowWord(HWND,INT);
3169 ATOM        WINAPI GlobalAddAtomA(LPCSTR);
3170 ATOM        WINAPI GlobalAddAtomW(LPCWSTR);
3171 #define     GlobalAddAtom WINELIB_NAME_AW(GlobalAddAtom)
3172 ATOM        WINAPI GlobalFindAtomA(LPCSTR);
3173 ATOM        WINAPI GlobalFindAtomW(LPCWSTR);
3174 #define     GlobalFindAtom WINELIB_NAME_AW(GlobalFindAtom)
3175 UINT      WINAPI GlobalGetAtomNameA(ATOM,LPSTR,INT);
3176 UINT      WINAPI GlobalGetAtomNameW(ATOM,LPWSTR,INT);
3177 #define     GlobalGetAtomName WINELIB_NAME_AW(GlobalGetAtomName)
3178 BOOL      WINAPI GrayStringA(HDC,HBRUSH,GRAYSTRINGPROC,LPARAM,
3179                                  INT,INT,INT,INT,INT);
3180 BOOL      WINAPI GrayStringW(HDC,HBRUSH,GRAYSTRINGPROC,LPARAM,
3181                                  INT,INT,INT,INT,INT);
3182 #define     GrayString WINELIB_NAME_AW(GrayString)
3183 BOOL      WINAPI HideCaret(HWND);
3184 BOOL      WINAPI HiliteMenuItem(HWND,HMENU,UINT,UINT);
3185 BOOL      WINAPI InflateRect(LPRECT,INT,INT);
3186 BOOL      WINAPI InSendMessage(void);
3187 BOOL      WINAPI InsertMenuA(HMENU,UINT,UINT,UINT,LPCSTR);
3188 BOOL      WINAPI InsertMenuW(HMENU,UINT,UINT,UINT,LPCWSTR);
3189 #define     InsertMenu WINELIB_NAME_AW(InsertMenu)
3190 BOOL      WINAPI InsertMenuItemA(HMENU,UINT,BOOL,const MENUITEMINFOA*);
3191 BOOL      WINAPI InsertMenuItemW(HMENU,UINT,BOOL,const MENUITEMINFOW*);
3192 #define     InsertMenuItem WINELIB_NAME_AW(InsertMenuItem)
3193 BOOL      WINAPI IntersectRect(LPRECT,const RECT*,const RECT*);
3194 BOOL      WINAPI InvalidateRect(HWND,const RECT*,BOOL);
3195 BOOL      WINAPI InvalidateRgn(HWND,HRGN,BOOL);
3196 BOOL      WINAPI InvertRect(HDC,const RECT*);
3197 BOOL      WINAPI IsCharAlphaA(CHAR);
3198 BOOL      WINAPI IsCharAlphaW(WCHAR);
3199 #define     IsCharAlpha WINELIB_NAME_AW(IsCharAlpha)
3200 BOOL      WINAPI IsCharAlphaNumericA(CHAR);
3201 BOOL      WINAPI IsCharAlphaNumericW(WCHAR);
3202 #define     IsCharAlphaNumeric WINELIB_NAME_AW(IsCharAlphaNumeric)
3203 BOOL      WINAPI IsCharLowerA(CHAR);
3204 BOOL      WINAPI IsCharLowerW(WCHAR);
3205 #define     IsCharLower WINELIB_NAME_AW(IsCharLower)
3206 BOOL      WINAPI IsCharUpperA(CHAR);
3207 BOOL      WINAPI IsCharUpperW(WCHAR);
3208 #define     IsCharUpper WINELIB_NAME_AW(IsCharUpper)
3209 BOOL      WINAPI IsChild(HWND,HWND);
3210 BOOL      WINAPI IsClipboardFormatAvailable(UINT);
3211 BOOL      WINAPI IsDialogMessageA(HWND,LPMSG);
3212 BOOL      WINAPI IsDialogMessageW(HWND,LPMSG);
3213 #define     IsDialogMessage WINELIB_NAME_AW(IsDialogMessage)
3214 UINT      WINAPI IsDlgButtonChecked(HWND,UINT);
3215 BOOL      WINAPI IsIconic(HWND);
3216 BOOL      WINAPI IsMenu(HMENU);
3217 BOOL      WINAPI IsRectEmpty(const RECT*);
3218 BOOL      WINAPI IsWindow(HWND);
3219 BOOL      WINAPI IsWindowEnabled(HWND);
3220 BOOL      WINAPI IsWindowVisible(HWND);
3221 BOOL      WINAPI IsZoomed(HWND);
3222 BOOL      WINAPI KillSystemTimer(HWND,UINT);
3223 BOOL      WINAPI KillTimer(HWND,UINT);
3224 HACCEL    WINAPI LoadAcceleratorsA(HINSTANCE,LPCSTR);
3225 HACCEL    WINAPI LoadAcceleratorsW(HINSTANCE,LPCWSTR);
3226 #define     LoadAccelerators WINELIB_NAME_AW(LoadAccelerators)
3227 HBITMAP   WINAPI LoadBitmapA(HANDLE,LPCSTR);
3228 HBITMAP   WINAPI LoadBitmapW(HANDLE,LPCWSTR);
3229 #define     LoadBitmap WINELIB_NAME_AW(LoadBitmap)
3230 HCURSOR   WINAPI LoadCursorA(HINSTANCE,LPCSTR);
3231 HCURSOR   WINAPI LoadCursorW(HINSTANCE,LPCWSTR);
3232 #define     LoadCursor WINELIB_NAME_AW(LoadCursor)
3233 HCURSOR   WINAPI LoadCursorFromFileA(LPCSTR);
3234 HCURSOR   WINAPI LoadCursorFromFileW(LPCWSTR);
3235 #define     LoadCursorFromFile WINELIB_NAME_AW(LoadCursorFromFile)
3236 HICON     WINAPI LoadIconA(HINSTANCE,LPCSTR);
3237 HICON     WINAPI LoadIconW(HINSTANCE,LPCWSTR);
3238 #define     LoadIcon WINELIB_NAME_AW(LoadIcon)
3239 HANDLE    WINAPI LoadImageA(HINSTANCE,LPCSTR,UINT,INT,INT,UINT);
3240 HANDLE    WINAPI LoadImageW(HINSTANCE,LPCWSTR,UINT,INT,INT,UINT);
3241 #define     LoadImage WINELIB_NAME_AW(LoadImage)
3242 HMENU     WINAPI LoadMenuA(HINSTANCE,LPCSTR);
3243 HMENU     WINAPI LoadMenuW(HINSTANCE,LPCWSTR);
3244 #define     LoadMenu WINELIB_NAME_AW(LoadMenu)
3245 HMENU     WINAPI LoadMenuIndirectA(LPCVOID);
3246 HMENU     WINAPI LoadMenuIndirectW(LPCVOID);
3247 #define     LoadMenuIndirect WINELIB_NAME_AW(LoadMenuIndirect)
3248 INT       WINAPI LoadStringA(HINSTANCE,UINT,LPSTR,INT);
3249 INT       WINAPI LoadStringW(HINSTANCE,UINT,LPWSTR,INT);
3250 #define     LoadString WINELIB_NAME_AW(LoadString)
3251 BOOL      WINAPI LockWindowUpdate(HWND);
3252 INT       WINAPI LookupIconIdFromDirectory(LPBYTE,BOOL);
3253 INT       WINAPI LookupIconIdFromDirectoryEx(LPBYTE,BOOL,INT,INT,UINT);
3254 UINT      WINAPI MapVirtualKeyA(UINT,UINT);
3255 UINT      WINAPI MapVirtualKeyW(UINT,UINT);
3256 #define     MapVirtualKey WINELIB_NAME_AW(MapVirtualKey)
3257 UINT      WINAPI MapVirtualKeyEx32A(UINT,UINT,HKL);
3258 #define     MapVirtualKeyEx WINELIB_NAME_AW(MapVirtualKeyEx)
3259 BOOL      WINAPI MapDialogRect(HWND,LPRECT);
3260 INT       WINAPI MapWindowPoints(HWND,HWND,LPPOINT,UINT);
3261 BOOL      WINAPI MessageBeep(UINT);
3262 INT       WINAPI MessageBoxA(HWND,LPCSTR,LPCSTR,UINT);
3263 INT       WINAPI MessageBoxW(HWND,LPCWSTR,LPCWSTR,UINT);
3264 #define     MessageBox WINELIB_NAME_AW(MessageBox)
3265 INT       WINAPI MessageBoxIndirectA(LPMSGBOXPARAMSA);
3266 INT       WINAPI MessageBoxIndirectW(LPMSGBOXPARAMSW);
3267 #define     MessageBoxIndirect WINELIB_NAME_AW(MessageBoxIndirect)
3268 BOOL      WINAPI ModifyMenuA(HMENU,UINT,UINT,UINT,LPCSTR);
3269 BOOL      WINAPI ModifyMenuW(HMENU,UINT,UINT,UINT,LPCWSTR);
3270 #define     ModifyMenu WINELIB_NAME_AW(ModifyMenu)
3271 BOOL      WINAPI MoveWindow(HWND,INT,INT,INT,INT,BOOL);
3272 BOOL      WINAPI OemToCharA(LPCSTR,LPSTR);
3273 BOOL      WINAPI OemToCharW(LPCSTR,LPWSTR);
3274 #define     OemToChar WINELIB_NAME_AW(OemToChar)
3275 BOOL      WINAPI OemToCharBuffA(LPCSTR,LPSTR,DWORD);
3276 BOOL      WINAPI OemToCharBuffW(LPCSTR,LPWSTR,DWORD);
3277 #define     OemToCharBuff WINELIB_NAME_AW(OemToCharBuff)
3278 BOOL      WINAPI OffsetRect(LPRECT,INT,INT);
3279 BOOL      WINAPI OpenClipboard(HWND);
3280 BOOL      WINAPI OpenIcon(HWND);
3281 BOOL      WINAPI PeekMessageA(LPMSG,HWND,UINT,UINT,UINT);
3282 BOOL      WINAPI PeekMessageW(LPMSG,HWND,UINT,UINT,UINT);
3283 #define     PeekMessage WINELIB_NAME_AW(PeekMessage)
3284 #define     PostAppMessageA(thread,msg,wparam,lparam) \
3285             PostThreadMessageA((DWORD)(thread),msg,wparam,lparam)
3286 #define     PostAppMessageW(thread,msg,wparam,lparam) \
3287             PostThreadMessageW((DWORD)(thread),msg,wparam,lparam)
3288 #define     PostAppMessage WINELIB_NAME_AW(PostAppMessage)
3289 BOOL      WINAPI PostMessageA(HWND,UINT,WPARAM,LPARAM);
3290 BOOL      WINAPI PostMessageW(HWND,UINT,WPARAM,LPARAM);
3291 #define     PostMessage WINELIB_NAME_AW(PostMessage)
3292 void        WINAPI PostQuitMessage(INT);
3293 BOOL      WINAPI PtInRect(const RECT*,POINT);
3294 BOOL      WINAPI RedrawWindow(HWND,const RECT*,HRGN,UINT);
3295 ATOM        WINAPI RegisterClassA(const WNDCLASSA *);
3296 ATOM        WINAPI RegisterClassW(const WNDCLASSW *);
3297 #define     RegisterClass WINELIB_NAME_AW(RegisterClass)
3298 ATOM        WINAPI RegisterClassExA(const WNDCLASSEXA *);
3299 ATOM        WINAPI RegisterClassExW(const WNDCLASSEXW *);
3300 #define     RegisterClassEx WINELIB_NAME_AW(RegisterClassEx)
3301 UINT      WINAPI RegisterClipboardFormatA(LPCSTR);
3302 UINT      WINAPI RegisterClipboardFormatW(LPCWSTR);
3303 #define     RegisterClipboardFormat WINELIB_NAME_AW(RegisterClipboardFormat)
3304 WORD        WINAPI RegisterWindowMessageA(LPCSTR);
3305 WORD        WINAPI RegisterWindowMessageW(LPCWSTR);
3306 #define     RegisterWindowMessage WINELIB_NAME_AW(RegisterWindowMessage)
3307 INT       WINAPI ReleaseDC(HWND,HDC);
3308 BOOL      WINAPI RemoveMenu(HMENU,UINT,UINT);
3309 HANDLE    WINAPI RemovePropA(HWND,LPCSTR);
3310 HANDLE    WINAPI RemovePropW(HWND,LPCWSTR);
3311 #define     RemoveProp WINELIB_NAME_AW(RemoveProp)
3312 BOOL      WINAPI ReplyMessage(LRESULT);
3313 BOOL      WINAPI ScreenToClient(HWND,LPPOINT);
3314 VOID        WINAPI ScrollChildren(HWND,UINT,WPARAM,LPARAM);
3315 BOOL      WINAPI ScrollDC(HDC,INT,INT,const RECT*,const RECT*,
3316                       HRGN,LPRECT);
3317 BOOL      WINAPI ScrollWindow(HWND,INT,INT,const RECT*,const RECT*);
3318 INT       WINAPI ScrollWindowEx(HWND,INT,INT,const RECT*,
3319                                     const RECT*,HRGN,LPRECT,UINT);
3320 LRESULT     WINAPI SendDlgItemMessageA(HWND,INT,UINT,WPARAM,LPARAM);
3321 LRESULT     WINAPI SendDlgItemMessageW(HWND,INT,UINT,WPARAM,LPARAM);
3322 #define     SendDlgItemMessage WINELIB_NAME_AW(SendDlgItemMessage)
3323 LRESULT     WINAPI SendMessageA(HWND,UINT,WPARAM,LPARAM);
3324 LRESULT     WINAPI SendMessageW(HWND,UINT,WPARAM,LPARAM);
3325 #define     SendMessage WINELIB_NAME_AW(SendMessage)
3326 LRESULT     WINAPI SendMessageTimeoutA(HWND,UINT,WPARAM,LPARAM,UINT,
3327                                          UINT,LPDWORD);
3328 LRESULT     WINAPI SendMessageTimeoutW(HWND,UINT,WPARAM,LPARAM,UINT,
3329                                          UINT,LPDWORD);
3330 #define     SendMessageTimeout WINELIB_NAME_AW(SendMessageTimeout)
3331 HWND      WINAPI SetActiveWindow(HWND);
3332 HWND      WINAPI SetCapture(HWND);
3333 BOOL      WINAPI SetCaretBlinkTime(UINT);
3334 BOOL      WINAPI SetCaretPos(INT,INT);
3335 LONG        WINAPI SetClassLongA(HWND,INT,LONG);
3336 LONG        WINAPI SetClassLongW(HWND,INT,LONG);
3337 #define     SetClassLong WINELIB_NAME_AW(SetClassLong)
3338 WORD        WINAPI SetClassWord(HWND,INT,WORD);
3339 HANDLE    WINAPI SetClipboardData(UINT,HANDLE);
3340 HWND      WINAPI SetClipboardViewer(HWND);
3341 BOOL      WINAPI SetCommBreak(HANDLE);
3342 HCURSOR   WINAPI SetCursor(HCURSOR);
3343 BOOL      WINAPI SetCursorPos(INT,INT);
3344 BOOL      WINAPI SetDeskWallPaper(LPCSTR);
3345 BOOL      WINAPI SetDlgItemInt(HWND,INT,UINT,BOOL);
3346 BOOL      WINAPI SetDlgItemTextA(HWND,INT,LPCSTR);
3347 BOOL      WINAPI SetDlgItemTextW(HWND,INT,LPCWSTR);
3348 #define     SetDlgItemText WINELIB_NAME_AW(SetDlgItemText)
3349 BOOL      WINAPI SetDoubleClickTime(UINT);
3350 HWND      WINAPI SetFocus(HWND);
3351 BOOL      WINAPI SetForegroundWindow(HWND);
3352 void        WINAPI SetInternalWindowPos(HWND,UINT,LPRECT,LPPOINT);
3353 BOOL      WINAPI SetMenu(HWND,HMENU);
3354 BOOL      WINAPI SetMenuContextHelpId(HMENU,DWORD);
3355 BOOL      WINAPI SetMenuItemBitmaps(HMENU,UINT,UINT,HBITMAP,HBITMAP);
3356 BOOL      WINAPI SetMessageQueue(INT);
3357 HWND      WINAPI SetParent(HWND,HWND);
3358 BOOL      WINAPI SetPropA(HWND,LPCSTR,HANDLE);
3359 BOOL      WINAPI SetPropW(HWND,LPCWSTR,HANDLE);
3360 #define     SetProp WINELIB_NAME_AW(SetProp)
3361 BOOL      WINAPI SetRect(LPRECT,INT,INT,INT,INT);
3362 BOOL      WINAPI SetRectEmpty(LPRECT);
3363 INT       WINAPI SetScrollInfo(HWND,INT,const SCROLLINFO*,BOOL);
3364 INT       WINAPI SetScrollPos(HWND,INT,INT,BOOL);
3365 BOOL      WINAPI SetScrollRange(HWND,INT,INT,INT,BOOL);
3366 BOOL      WINAPI SetSysColors(INT,const INT*,const COLORREF*);
3367 #define     SetSysModalWindow(hwnd) ((HWND)0)
3368 BOOL      WINAPI SetSystemCursor(HCURSOR,DWORD);
3369 BOOL      WINAPI SetSystemMenu(HWND,HMENU);
3370 UINT      WINAPI SetSystemTimer(HWND,UINT,UINT,TIMERPROC);
3371 UINT      WINAPI SetTimer(HWND,UINT,UINT,TIMERPROC);
3372 LONG        WINAPI SetWindowLongA(HWND,INT,LONG);
3373 LONG        WINAPI SetWindowLongW(HWND,INT,LONG);
3374 #define     SetWindowLong WINELIB_NAME_AW(SetWindowLong)
3375 BOOL      WINAPI SetWindowPlacement(HWND,const WINDOWPLACEMENT*);
3376 HHOOK       WINAPI SetWindowsHookA(INT,HOOKPROC);
3377 HHOOK       WINAPI SetWindowsHookW(INT,HOOKPROC);
3378 #define     SetWindowsHook WINELIB_NAME_AW(SetWindowsHook)
3379 HHOOK       WINAPI SetWindowsHookExA(INT,HOOKPROC,HINSTANCE,DWORD);
3380 HHOOK       WINAPI SetWindowsHookExW(INT,HOOKPROC,HINSTANCE,DWORD);
3381 #define     SetWindowsHookEx WINELIB_NAME_AW(SetWindowsHookEx)
3382 BOOL      WINAPI SetWindowPos(HWND,HWND,INT,INT,INT,INT,WORD);
3383 INT       WINAPI SetWindowRgn(HWND,HRGN,BOOL);
3384 BOOL      WINAPI SetWindowTextA(HWND,LPCSTR);
3385 BOOL      WINAPI SetWindowTextW(HWND,LPCWSTR);
3386 #define     SetWindowText WINELIB_NAME_AW(SetWindowText)
3387 WORD        WINAPI SetWindowWord(HWND,INT,WORD);
3388 BOOL      WINAPI ShowCaret(HWND);
3389 INT       WINAPI ShowCursor(BOOL);
3390 BOOL      WINAPI ShowScrollBar(HWND,INT,BOOL);
3391 BOOL      WINAPI ShowOwnedPopups(HWND,BOOL);
3392 BOOL      WINAPI ShowWindow(HWND,INT);
3393 BOOL      WINAPI SubtractRect(LPRECT,const RECT*,const RECT*);
3394 BOOL      WINAPI SwapMouseButton(BOOL);
3395 VOID        WINAPI SwitchToThisWindow(HWND,BOOL);
3396 BOOL      WINAPI SystemParametersInfoA(UINT,UINT,LPVOID,UINT);
3397 BOOL      WINAPI SystemParametersInfoW(UINT,UINT,LPVOID,UINT);
3398 #define     SystemParametersInfo WINELIB_NAME_AW(SystemParametersInfo)
3399 LONG        WINAPI TabbedTextOutA(HDC,INT,INT,LPCSTR,INT,INT,const INT*,INT);
3400 LONG        WINAPI TabbedTextOutW(HDC,INT,INT,LPCWSTR,INT,INT,const INT*,INT);
3401 #define     TabbedTextOut WINELIB_NAME_AW(TabbedTextOut)
3402 INT       WINAPI ToAscii(UINT,UINT,LPBYTE,LPWORD,UINT);
3403 INT       WINAPI ToAsciiEx(UINT,UINT,LPBYTE,LPWORD,UINT,HKL);
3404 BOOL      WINAPI TrackPopupMenu(HMENU,UINT,INT,INT,INT,HWND,const RECT*);
3405 INT       WINAPI TranslateAccelerator(HWND,HACCEL,LPMSG);
3406 BOOL      WINAPI TranslateMDISysAccel(HWND,LPMSG);
3407 BOOL      WINAPI TranslateMessage(const MSG*);
3408 BOOL      WINAPI UnhookWindowsHook(INT,HOOKPROC);
3409 BOOL      WINAPI UnhookWindowsHookEx(HHOOK);
3410 BOOL      WINAPI UnionRect(LPRECT,const RECT*,const RECT*);
3411 BOOL      WINAPI UnregisterClassA(LPCSTR,HINSTANCE);
3412 BOOL      WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
3413 #define     UnregisterClass WINELIB_NAME_AW(UnregisterClass)
3414 VOID        WINAPI UpdateWindow(HWND);
3415 VOID        WINAPI ValidateRect(HWND,const RECT*);
3416 VOID        WINAPI ValidateRgn(HWND,HRGN);
3417 WORD        WINAPI VkKeyScanA(CHAR);
3418 WORD        WINAPI VkKeyScanW(WCHAR);
3419 #define     VkKeyScan WINELIB_NAME_AW(VkKeyScan)
3420 WORD        WINAPI VkKeyScanExA(CHAR, HKL);
3421 WORD        WINAPI VkKeyScanExW(WCHAR, HKL);
3422 #define     VkKeyScanEx WINELIB_NAME_AW(VkKeyScanEx)
3423 HWND      WINAPI WindowFromDC(HDC);
3424 HWND      WINAPI WindowFromPoint(POINT);
3425 BOOL      WINAPI WinHelpA(HWND,LPCSTR,UINT,DWORD);
3426 BOOL      WINAPI WinHelpW(HWND,LPCWSTR,UINT,DWORD);
3427 #define     WinHelp WINELIB_NAME_AW(WinHelp)
3428 UINT      WINAPI WNetAddConnectionA(LPCSTR,LPCSTR,LPCSTR);
3429 UINT      WINAPI WNetAddConnectionW(LPCWSTR,LPCWSTR,LPCWSTR);
3430 #define     WNetAddConnection WINELIB_NAME_AW(WNetAddConnection)
3431 INT       WINAPIV wsnprintfA(LPSTR,UINT,LPCSTR,...);
3432 INT       WINAPIV wsnprintfW(LPWSTR,UINT,LPCWSTR,...);
3433 #define     wsnprintf WINELIB_NAME_AW(wsnprintf)
3434 INT       WINAPIV wsprintfA(LPSTR,LPCSTR,...);
3435 INT       WINAPIV wsprintfW(LPWSTR,LPCWSTR,...);
3436 #define     wsprintf WINELIB_NAME_AW(wsprintf)
3437 INT       WINAPI wvsnprintfA(LPSTR,UINT,LPCSTR,va_list);
3438 INT       WINAPI wvsnprintfW(LPWSTR,UINT,LPCWSTR,va_list);
3439 #define     wvsnprintf WINELIB_NAME_AW(wvsnprintf)
3440 INT       WINAPI wvsprintfA(LPSTR,LPCSTR,va_list);
3441 INT       WINAPI wvsprintfW(LPWSTR,LPCWSTR,va_list);
3442 #define     wvsprintf WINELIB_NAME_AW(wvsprintf)
3443
3444 BOOL      WINAPI RegisterShellHook16(HWND16,UINT16);
3445 /* NOTE: This is SYSTEM.3, not USER.182, which is also named KillSystemTimer */
3446 WORD        WINAPI SYSTEM_KillSystemTimer( WORD );
3447
3448 /* Extra functions that don't exist in the Windows API */
3449
3450 HPEN      WINAPI GetSysColorPen(INT);
3451 INT       WINAPI LoadMessageA(HMODULE,UINT,WORD,LPSTR,INT);
3452 INT       WINAPI LoadMessageW(HMODULE,UINT,WORD,LPWSTR,INT);
3453
3454 VOID        WINAPI ScreenSwitchEnable16(WORD);
3455
3456 #ifdef __cplusplus
3457 }
3458 #endif
3459
3460 #endif /* __INCLUDE_WINUSER_H */