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