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