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