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