1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
#![cfg(windows)]
extern crate winapi;
use winapi::*;
extern "system" {
pub fn ActivateKeyboardLayout(hkl: HKL, flags: UINT) -> HKL;
pub fn AddClipboardFormatListener(hWnd: HWND) -> BOOL;
pub fn AdjustWindowRect(lpRect: LPRECT, dwStyle: DWORD, bMenu: BOOL) -> BOOL;
pub fn AdjustWindowRectEx(
lpRect: LPRECT, dwStyle: DWORD, bMenu: BOOL, dwExStyle: DWORD,
) -> BOOL;
pub fn AllowSetForegroundWindow(dwProcessId: DWORD) -> BOOL;
pub fn AnimateWindow(hWnd: HWND, dwTime: DWORD, dwFlags: DWORD) -> BOOL;
pub fn AnyPopup() -> BOOL;
pub fn AppendMenuA(
hMenu: HMENU, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCSTR,
) -> BOOL;
pub fn AppendMenuW(
hMenu: HMENU, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCWSTR,
) -> BOOL;
pub fn ArrangeIconicWindows(hWnd: HWND) -> UINT;
pub fn AttachThreadInput(idAttach: DWORD, idAttachTo: DWORD, fAttach: BOOL) -> BOOL;
pub fn BeginPaint(hwnd: HWND, lpPaint: LPPAINTSTRUCT) -> HDC;
pub fn BlockInput(fBlockIt: BOOL) -> BOOL;
pub fn BringWindowToTop(hWnd: HWND) -> BOOL;
pub fn BroadcastSystemMessageA(
flags: DWORD, lpInfo: LPDWORD, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LONG;
pub fn BroadcastSystemMessageW(
flags: DWORD, lpInfo: LPDWORD, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LONG;
pub fn CalculatePopupWindowPosition(
anchorPoint: *const POINT, windowSize: *const SIZE, flags: UINT, excludeRect: *mut RECT,
popupWindowPosition: *mut RECT,
) -> BOOL;
pub fn CallMsgFilterA(lpMsg: LPMSG, nCode: c_int) -> BOOL;
pub fn CallMsgFilterW(lpMsg: LPMSG, nCode: c_int) -> BOOL;
pub fn CallNextHookEx(hhk: HHOOK, nCode: c_int, wParam: WPARAM, lParam: LPARAM) -> LRESULT;
pub fn CallWindowProcA(
lpPrevWndFunc: WNDPROC, hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn CallWindowProcW(
lpPrevWndFunc: WNDPROC, hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn CancelShutdown() -> BOOL;
pub fn CascadeWindows(
hwndParent: HWND, wHow: UINT, lpRect: *const RECT, cKids: UINT, lpKids: *const HWND,
) -> WORD;
pub fn ChangeClipboardChain(hwndRemove: HWND, hwndNewNext: HWND) -> BOOL;
pub fn ChangeDisplaySettingsA(lpDevMode: *mut DEVMODEA, dwFlags: DWORD) -> LONG;
pub fn ChangeDisplaySettingsExA(
lpszDeviceName: LPCSTR, lpDevMode: *mut DEVMODEA, hwnd: HWND, dwFlags: DWORD,
lParam: LPVOID,
) -> LONG;
pub fn ChangeDisplaySettingsExW(
lpszDeviceName: LPCWSTR, lpDevMode: *mut DEVMODEW, hwnd: HWND, dwFlags: DWORD,
lParam: LPVOID,
) -> LONG;
pub fn ChangeDisplaySettingsW(lpDevMode: *mut DEVMODEW, dwFlags: DWORD) -> LONG;
pub fn ChangeMenuA(
hMenu: HMENU, cmd: UINT, lpszNewItem: LPCSTR, cmdInsert: UINT, flags: UINT,
) -> BOOL;
pub fn ChangeMenuW(
hMenu: HMENU, cmd: UINT, lpszNewItem: LPCWSTR, cmdInsert: UINT, flags: UINT,
) -> BOOL;
pub fn ChangeWindowMessageFilter(message: UINT, dwFlag: DWORD) -> BOOL;
pub fn ChangeWindowMessageFilterEx(
hwnd: HWND, message: UINT, action: DWORD, pChangeFilterStruct: PCHANGEFILTERSTRUCT,
) -> BOOL;
pub fn CharLowerA(lpsz: LPSTR) -> LPSTR;
pub fn CharLowerBuffA(lpsz: LPSTR, cchLength: DWORD) -> DWORD;
pub fn CharLowerBuffW(lpsz: LPWSTR, cchLength: DWORD) -> DWORD;
pub fn CharLowerW(lpsz: LPWSTR) -> LPWSTR;
pub fn CharNextA(lpsz: LPCSTR) -> LPSTR;
pub fn CharNextExA(codePage: WORD, lpCurrentChar: LPSTR, dwFlags: DWORD) -> LPSTR;
pub fn CharNextW(lpsz: LPCWSTR) -> LPWSTR;
pub fn CharPrevA(lpszStart: LPCSTR, lpszCurrent: LPCSTR) -> LPSTR;
pub fn CharPrevExA(
codePage: WORD, lpStart: LPCSTR, lpCurrentChar: LPCSTR, dwFlags: DWORD,
) -> LPSTR;
pub fn CharPrevW(lpszStart: LPCWSTR, lpszCurrent: LPCWSTR) -> LPWSTR;
pub fn CharUpperA(lpsz: LPSTR) -> LPSTR;
pub fn CharUpperBuffA(lpsz: LPSTR, cchLength: DWORD) -> DWORD;
pub fn CharUpperBuffW(lpsz: LPWSTR, cchLength: DWORD) -> DWORD;
pub fn CharUpperW(lpsz: LPWSTR) -> LPWSTR;
pub fn CheckDlgButton(hDlg: HWND, nIDButton: c_int, uCheck: UINT) -> BOOL;
pub fn CheckMenuItem(hMenu: HMENU, uIDCheckItem: UINT, uCheck: UINT) -> DWORD;
pub fn CheckMenuRadioItem(
hMenu: HMENU, first: UINT, last: UINT, check: UINT, flags: UINT,
) -> BOOL;
pub fn CheckRadioButton(
hDlg: HWND, nIDFirstButton: c_int, nIDLasatButton: c_int, nIDCheckButton: c_int,
) -> BOOL;
pub fn ChildWindowFromPoint(hWndParent: HWND, point: POINT) -> HWND;
pub fn ChildWindowFromPointEx(hwnd: HWND, pt: POINT, flags: UINT) -> HWND;
pub fn ClientToScreen(hWnd: HWND, lpPoint: LPPOINT) -> BOOL;
pub fn ClipCursor(lpRect: *const RECT) -> BOOL;
pub fn CloseClipboard() -> BOOL;
pub fn CloseDesktop(hDesktop: HDESK) -> BOOL;
pub fn CloseTouchInputHandle(hTouchInput: HTOUCHINPUT) -> BOOL;
pub fn CloseWindow(hWnd: HWND) -> BOOL;
pub fn CloseWindowStation(hWinSta: HWINSTA) -> BOOL;
pub fn CopyAcceleratorTableA(
hAccelSrc: HACCEL, lpAccelDst: LPACCEL, cAccelEntries: c_int,
) -> c_int;
pub fn CopyAcceleratorTableW(
hAccelSrc: HACCEL, lpAccelDst: LPACCEL, cAccelEntries: c_int,
) -> c_int;
pub fn CopyIcon(hIcon: HICON) -> HICON;
pub fn CopyImage(h: HANDLE, type_: UINT, cx: c_int, cy: c_int, flags: UINT) -> HANDLE;
pub fn CopyRect(lprcDst: LPRECT, lprcSrc: *const RECT) -> BOOL;
pub fn CountClipboardFormats() -> c_int;
pub fn CreateAcceleratorTableA(paccel: LPACCEL, cAccel: c_int) -> HACCEL;
pub fn CreateAcceleratorTableW(paccel: LPACCEL, cAccel: c_int) -> HACCEL;
pub fn CreateCaret(hWnd: HWND, hBitmap: HBITMAP, nWidth: c_int, nHeight: c_int) -> BOOL;
pub fn CreateCursor(
hInst: HINSTANCE, xHotSpot: c_int, yHotSpot: c_int, nWidth: c_int, nHeight: c_int,
pvAndPlane: *const VOID, pvXORPlane: *const VOID,
) -> HCURSOR;
pub fn CreateDesktopA(
lpszDesktop: LPCSTR, lpszDevice: LPCSTR, pDevmode: *mut DEVMODEA, dwFlags: DWORD,
dwDesiredAccess: ACCESS_MASK, lpsa: LPSECURITY_ATTRIBUTES,
) -> HDESK;
pub fn CreateDesktopW(
lpszDesktop: LPCWSTR, lpszDevice: LPCWSTR, pDevmode: *mut DEVMODEW, dwFlags: DWORD,
dwDesiredAccess: ACCESS_MASK, lpsa: LPSECURITY_ATTRIBUTES,
) -> HDESK;
pub fn CreateDialogIndirectParamA(
hInstance: HINSTANCE, lpTemplate: LPCDLGTEMPLATEA, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> HWND;
pub fn CreateDialogIndirectParamW(
hInstance: HINSTANCE, lpTemplate: LPCDLGTEMPLATEW, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> HWND;
pub fn CreateDialogParamA(
hInstance: HINSTANCE, lpTemplateName: LPCSTR, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> HWND;
pub fn CreateDialogParamW(
hInstance: HINSTANCE, lpTemplateName: LPCWSTR, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> HWND;
pub fn CreateIcon(
hInstance: HINSTANCE, nWidth: c_int, nHeight: c_int, cPlanes: BYTE, cBitsPixel: BYTE,
lpbANDbits: *const BYTE, lpbXORbits: *const BYTE,
) -> HICON;
pub fn CreateIconFromResource(
presbits: PBYTE, dwResSize: DWORD, fIcon: BOOL, dwVer: DWORD,
) -> HICON;
pub fn CreateIconFromResourceEx(
presbits: PBYTE, dwResSize: DWORD, fIcon: BOOL, dwVer: DWORD, cxDesired: c_int,
cyDesired: c_int, Flags: UINT,
) -> HICON;
pub fn CreateIconIndirect(piconinfo: PICONINFO) -> HICON;
pub fn CreateMDIWindowA(
lpClassName: LPCSTR, lpWindowName: LPCSTR, dwStyle: DWORD, X: c_int, Y: c_int,
nWidth: c_int, nHeight: c_int, hWndParent: HWND, hInstance: HINSTANCE, lParam: LPARAM,
) -> HWND;
pub fn CreateMDIWindowW(
lpClassName: LPCWSTR, lpWindowName: LPCWSTR, dwStyle: DWORD, X: c_int, Y: c_int,
nWidth: c_int, nHeight: c_int, hWndParent: HWND, hInstance: HINSTANCE, lParam: LPARAM,
) -> HWND;
pub fn CreateMenu() -> HMENU;
pub fn CreatePopupMenu() ->HMENU;
pub fn CreateWindowExA(
dwExStyle: DWORD, lpClassName: LPCSTR, lpWindowName: LPCSTR, dwStyle: DWORD, x: c_int,
y: c_int, nWidth: c_int, nHeight: c_int, hWndParent: HWND, hMenu: HMENU,
hInstance: HINSTANCE, lpParam: LPVOID,
) -> HWND;
pub fn CreateWindowExW(
dwExStyle: DWORD, lpClassName: LPCWSTR, lpWindowName: LPCWSTR, dwStyle: DWORD, x: c_int,
y: c_int, nWidth: c_int, nHeight: c_int, hWndParent: HWND, hMenu: HMENU,
hInstance: HINSTANCE, lpParam: LPVOID,
) -> HWND;
pub fn CreateWindowStationA(
lpwinsta: LPCSTR, dwFlags: DWORD, dwDesiredAccess: ACCESS_MASK, lpsa: LPSECURITY_ATTRIBUTES,
) -> HWINSTA;
pub fn CreateWindowStationW(
lpwinsta: LPCWSTR, dwFlags: DWORD, dwDesiredAccess: ACCESS_MASK,
lpsa: LPSECURITY_ATTRIBUTES,
) -> HWINSTA;
pub fn DefDlgProcA(
hDlg: HWND, msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefDlgProcW(
hDlg: HWND, msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefFrameProcA(
hwnd: HWND, hwndMDIClient: HWND, uMsg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefFrameProcW(
hwnd: HWND, hwndMDIClient: HWND, uMsg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefMDIChildProcA(
hwnd: HWND, uMsg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefMDIChildProcW(
hwnd: HWND, uMsg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn DefRawInputProc(paRawInput: *mut PRAWINPUT, nInput: INT, cbSizeHeader: UINT) -> LRESULT;
pub fn DefWindowProcA(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT;
pub fn DefWindowProcW(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT;
pub fn DeferWindowPos(
hWinPosInfo: HDWP, hWnd: HWND, hWndInserAfter: HWND, x: c_int, y: c_int, cx: c_int,
cy: c_int, uFlags: UINT,
) -> HDWP;
pub fn DeleteMenu(hMenu: HMENU, uPosition: UINT, uFlags: UINT) -> BOOL;
pub fn DeregisterShellHookWindow(hwnd: HWND) -> BOOL;
pub fn DestroyAcceleratorTable(hAccel: HACCEL) -> BOOL;
pub fn DestroyCaret() -> BOOL;
pub fn DestroyCursor(hCursor: HCURSOR) -> BOOL;
pub fn DestroyIcon(hIcon: HICON) -> BOOL;
pub fn DestroyMenu(hMenu: HMENU) -> BOOL;
pub fn DestroyWindow(hWnd: HWND) -> BOOL;
pub fn DialogBoxIndirectParamA(
hInstance: HINSTANCE, hDialogTemplate: LPCDLGTEMPLATEA, hWndParent: HWND,
lpDialogFunc: DLGPROC, dwInitParam: LPARAM,
) -> INT_PTR;
pub fn DialogBoxIndirectParamW(
hInstance: HINSTANCE, hDialogTemplate: LPCDLGTEMPLATEW, hWndParent: HWND,
lpDialogFunc: DLGPROC, dwInitParam: LPARAM,
) -> INT_PTR;
pub fn DialogBoxParamA(
hInstance: HINSTANCE, lpTemplateName: LPCSTR, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> INT_PTR;
pub fn DialogBoxParamW(
hInstance: HINSTANCE, lpTemplateName: LPCWSTR, hWndParent: HWND, lpDialogFunc: DLGPROC,
dwInitParam: LPARAM,
) -> INT_PTR;
pub fn DispatchMessageA(lpmsg: *const MSG) -> LRESULT;
pub fn DispatchMessageW(lpmsg: *const MSG) -> LRESULT;
pub fn DlgDirListA(
hDlg: HWND, lpPathSpec: LPSTR, nIDListBox: c_int, nIDStaticPath: c_int, uFileType: UINT
) -> c_int;
pub fn DlgDirListComboBoxA(
hDlg: HWND, lpPathSpec: LPSTR, nIDComboBox: c_int, nIDStaticPath: c_int, uFiletype: UINT
) -> c_int;
pub fn DlgDirListComboBoxW(
hDlg: HWND, lpPathSpec: LPWSTR, nIDComboBox: c_int, nIDStaticPath: c_int, uFiletype: UINT
) -> c_int;
pub fn DlgDirListW(
hDlg: HWND, lpPathSpec: LPWSTR, nIDListBox: c_int, nIDStaticPath: c_int, uFileType: UINT
) -> c_int;
pub fn DlgDirSelectComboBoxExA(
hwndDlg: HWND, lpString: LPSTR, cchOut: c_int, idComboBox: c_int
) -> BOOL;
pub fn DlgDirSelectComboBoxExW(
hwndDlg: HWND, lpString: LPWSTR, cchOut: c_int, idComboBox: c_int
) -> BOOL;
pub fn DlgDirSelectExA(
hwndDlg: HWND, lpString: LPSTR, chCount: c_int, idListBox: c_int
) -> BOOL;
pub fn DlgDirSelectExW(
hwndDlg: HWND, lpString: LPWSTR, chCount: c_int, idListBox: c_int
) -> BOOL;
pub fn DragDetect(hwnd: HWND, pt: POINT) -> BOOL;
pub fn DragObject(
hwndParent: HWND, hwndFrom: HWND, fmt: UINT, data: ULONG_PTR, hcur: HCURSOR,
) -> DWORD;
pub fn DrawAnimatedRects(
hwnd: HWND, idAni: c_int, lprcFrom: *const RECT, lprcTo: *const RECT,
) -> BOOL;
pub fn DrawCaption(hwnd: HWND, hdc: HDC, lprect: *const RECT, flags: UINT) -> BOOL;
pub fn DrawEdge(hdc: HDC, qrc: LPRECT, edge: UINT, grfFlags: UINT) -> BOOL;
pub fn DrawFocusRect(hDC: HDC, lprc: *const RECT) -> BOOL;
pub fn DrawFrameControl(hdc: HDC, lprc: LPRECT, uType: UINT, uState: UINT) -> BOOL;
pub fn DrawIcon(hDC: HDC, x: c_int, y: c_int, hIcon: HICON) -> BOOL;
pub fn DrawIconEx(
hdc: HDC, xLeft: c_int, yTop: c_int, hIcon: HICON, cxWidth: c_int, cyWidth: c_int,
istepIfAniCur: UINT, hbrFlickerFreeDraw: HBRUSH, diFlags: UINT,
) -> BOOL;
pub fn DrawMenuBar(hwnd: HWND) -> BOOL;
pub fn DrawStateA(
hdc: HDC, hbrFore: HBRUSH, qfnCallBack: DRAWSTATEPROC, lData: LPARAM, wData: WPARAM,
x: c_int, y: c_int, cx: c_int, cy: c_int, uFlags: UINT,
) -> BOOL;
pub fn DrawStateW(
hdc: HDC, hbrFore: HBRUSH, qfnCallBack: DRAWSTATEPROC, lData: LPARAM, wData: WPARAM,
x: c_int, y: c_int, cx: c_int, cy: c_int, uFlags: UINT,
) -> BOOL;
pub fn DrawTextA(
hdc: HDC, lpchText: LPCSTR, cchText: c_int, lprc: LPRECT, format: UINT,
) -> c_int;
pub fn DrawTextExA(
hdc: HDC, lpchText: LPCSTR, cchText: c_int, lprc: LPRECT, format: UINT,
lpdtp: LPDRAWTEXTPARAMS,
) -> c_int;
pub fn DrawTextExW(
hdc: HDC, lpchText: LPCWSTR, cchText: c_int, lprc: LPRECT, format: UINT,
lpdtp: LPDRAWTEXTPARAMS,
) -> c_int;
pub fn DrawTextW(
hdc: HDC, lpchText: LPCWSTR, cchText: c_int, lprc: LPRECT, format: UINT,
) -> c_int;
pub fn EmptyClipboard() -> BOOL;
pub fn EnableMenuItem(hMenu: HMENU, uIDEnableItem: UINT, uEnable: UINT) -> BOOL;
pub fn EnableMouseInPointer(fEnable: BOOL) -> BOOL;
pub fn EnableScrollBar(hWnd: HWND, wSBflags: UINT, wArrows: UINT) -> BOOL;
pub fn EnableWindow(hWnd: HWND, bEnable: BOOL) -> BOOL;
pub fn EndDeferWindowPos(hWinPosInfo: HDWP) -> BOOL;
pub fn EndDialog(hDlg: HWND, nResult: INT_PTR) -> BOOL;
pub fn EndMenu(hMenu: HMENU, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCSTR) -> BOOL;
pub fn EndPaint(hWnd: HWND, lpPaint: *const PAINTSTRUCT) -> BOOL;
pub fn EndTask(hWnd: HWND, fShutDown: BOOL, fForce: BOOL) -> BOOL;
pub fn EnumChildWindows(
hwndParent: HWND, lpEnumFunc: WNDENUMPROC, lpParam: LPARAM,
) -> BOOL;
pub fn EnumClipboardFormats(format: UINT) -> UINT;
pub fn EnumDesktopWindows(hDesktop: HDESK, lpfn: WNDENUMPROC, lParam: LPARAM) -> BOOL;
pub fn EnumDesktopsA(
hwinsta: HWINSTA, lpEnumFunc: DESKTOPENUMPROCA, lParam: LPARAM,
) -> BOOL;
pub fn EnumDesktopsW(
hwinsta: HWINSTA, lpEnumFunc: DESKTOPENUMPROCW, lParam: LPARAM,
) -> BOOL;
pub fn EnumDisplayDevicesA(
lpDevice: LPCSTR, iDevNum: DWORD, lpDisplayDevice: PDISPLAY_DEVICEA, dwFlags: DWORD,
) -> BOOL;
pub fn EnumDisplayDevicesW(
lpDevice: LPCWSTR, iDevNum: DWORD, lpDisplayDevice: PDISPLAY_DEVICEW, dwFlags: DWORD,
) -> BOOL;
pub fn EnumDisplayMonitors(
hdc: HDC, lprcClip: LPCRECT, lpfnEnum: MONITORENUMPROC, dwData: LPARAM,
) -> BOOL;
pub fn EnumDisplaySettingsA(
lpszDeviceName: LPCSTR, iModeNum: DWORD, lpDevMode: *mut DEVMODEA,
) -> BOOL;
pub fn EnumDisplaySettingsExA(
lpszDeviceName: LPCSTR, iModeNum: DWORD, lpDevMode: *mut DEVMODEA, dwFlags: DWORD,
) -> BOOL;
pub fn EnumDisplaySettingsExW(
lpszDeviceName: LPCWSTR, iModeNum: DWORD, lpDevMode: *mut DEVMODEW, dwFlags: DWORD,
) -> BOOL;
pub fn EnumDisplaySettingsW(
lpszDeviceName: LPCWSTR, iModeNum: DWORD, lpDevMode: *mut DEVMODEW,
) -> BOOL;
pub fn EnumPropsA(hWnd: HWND, lpEnumFunc: PROPENUMPROCA) -> c_int;
pub fn EnumPropsExA(hWnd: HWND, lpEnumFunc: PROPENUMPROCA, lParam: LPARAM) -> c_int;
pub fn EnumPropsExW(hWnd: HWND, lpEnumFunc: PROPENUMPROCW, lParam: LPARAM) -> c_int;
pub fn EnumPropsW(hWnd: HWND, lpEnumFunc: PROPENUMPROCW) -> c_int;
pub fn EnumThreadWindows(dwThreadId: DWORD, lpfn: WNDENUMPROC, lParam: LPARAM) -> BOOL;
pub fn EnumWindowStationsA(lpEnumFunc: WINSTAENUMPROCA, lParam: LPARAM) -> BOOL;
pub fn EnumWindowStationsW(lpEnumFunc: WINSTAENUMPROCW, lParam: LPARAM) -> BOOL;
pub fn EnumWindows(lpEnumFunc: WNDENUMPROC, lParam: LPARAM) -> BOOL;
pub fn ExcludeUpdateRgn(hDC: HDC, hWnd: HWND) -> c_int;
pub fn ExitWindowsEx(uFlags: UINT, dwReason: DWORD) -> BOOL;
pub fn FillRect(hDC: HDC, lprc: *const RECT, hbr: HBRUSH) -> c_int;
pub fn FindWindowA (lpClassName: LPCSTR, lpWindowName: LPCSTR) -> HWND;
pub fn FindWindowExA(
hWndParent: HWND, hWndChildAfter: HWND, lpszClass: LPCSTR, lpszWindow: LPCSTR,
) -> HWND;
pub fn FindWindowExW(
hWndParent: HWND, hWndChildAfter: HWND, lpszClass: LPCWSTR, lpszWindow: LPCWSTR,
) -> HWND;
pub fn FindWindowW(lpClassName: LPCWSTR, lpWindowName: LPCWSTR) -> HWND;
pub fn FlashWindow(hwnd: HWND, bInvert: BOOL) -> BOOL;
pub fn FlashWindowEx(pfwi: PFLASHWINFO) -> BOOL;
pub fn FrameRect(hDC: HDC, lprc: *const RECT, hbr: HBRUSH) -> c_int;
pub fn GetActiveWindow() -> HWND;
pub fn GetAncestor(hWnd: HWND, gaFlags: UINT) -> HWND;
pub fn GetAsyncKeyState(vKey: c_int) -> SHORT;
pub fn GetCapture() -> HWND;
pub fn GetCaretBlinkTime() -> UINT;
pub fn GetCaretPos(lpPoint: LPPOINT) -> BOOL;
pub fn GetClassInfoExW(
hinst: HINSTANCE, lpszClass: LPCWSTR, lpwcx: LPWNDCLASSEXW,
) -> BOOL;
pub fn GetClassInfoW(
hInstance: HINSTANCE, lpClassName: LPCWSTR, lpWndClass: LPWNDCLASSW,
) -> BOOL;
pub fn GetClassLongA(hWnd: HWND, nIndex: c_int) -> DWORD;
#[cfg(target_arch = "x86_64")]
pub fn GetClassLongPtrA(hWnd: HWND, nIndex: c_int) -> ULONG_PTR;
#[cfg(target_arch = "x86_64")]
pub fn GetClassLongPtrW(hWnd: HWND, nIndex: c_int) -> ULONG_PTR;
pub fn GetClassLongW(hWnd: HWND, nIndex: c_int) -> DWORD;
pub fn GetClassNameA(hWnd: HWND, lpClassName: LPCSTR, nMaxCount: c_int) -> c_int;
pub fn GetClassNameW(hWnd: HWND, lpClassName: LPCWSTR, nMaxCount: c_int) -> c_int;
pub fn GetClassWord(hWnd: HWND, nIndex: c_int) -> WORD;
pub fn GetClientRect(hWnd: HWND, lpRect: LPRECT) -> BOOL;
pub fn GetClipCursor(lpRect: LPRECT) -> BOOL;
pub fn GetClipboardData(uFormat: UINT) -> HANDLE;
pub fn GetClipboardFormatNameA(
format: UINT, lpszFormatName: LPSTR, cchMaxCount: c_int,
) -> c_int;
pub fn GetClipboardFormatNameW(
format: UINT, lpszFormatName: LPWSTR, cchMaxCount: c_int,
) -> c_int;
pub fn GetClipboardOwner() -> HWND;
pub fn GetClipboardSequenceNumber() -> DWORD;
pub fn GetClipboardViewer() -> HWND;
pub fn GetCursor() -> HCURSOR;
pub fn GetCursorPos(lpPoint: LPPOINT) -> BOOL;
pub fn GetDC(hWnd: HWND) -> HDC;
pub fn GetDCEx(hWnd: HWND, hrgnClip: HRGN, flags: DWORD) -> HDC;
pub fn GetDesktopWindow() -> HWND;
pub fn GetDialogBaseUnits() -> LONG;
pub fn GetDlgCtrlID(hwnd: HWND) -> c_int;
pub fn GetDlgItem(hDlg: HWND, nIDDlgItem: c_int) -> HWND;
pub fn GetDlgItemInt(
hDlg: HWND, nIDDlgItem: c_int, lpTranslated: *mut BOOL, bSigned: BOOL,
) -> UINT;
pub fn GetDlgItemTextA(
hDlg: HWND, nIDDlgItem: c_int, lpString: LPSTR, nMaxCount: c_int,
) -> UINT;
pub fn GetDlgItemTextW(
hDlg: HWND, nIDDlgItem: c_int, lpString: LPWSTR, nMaxCount: c_int,
) -> UINT;
pub fn GetDoubleClickTime() -> UINT;
pub fn GetFocus() -> HWND;
pub fn GetForegroundWindow() -> HWND;
pub fn GetIconInfo(hIcon: HICON, piconinfo: PICONINFO) -> BOOL;
pub fn GetKBCodePage() -> UINT;
pub fn GetKeyNameTextA(lparam: LONG, lpString: LPSTR, cchSize: c_int) -> c_int;
pub fn GetKeyNameTextW(lParam: LONG, lpString: LPWSTR, cchSize: c_int) -> c_int;
pub fn GetKeyState(nVirtKey: c_int) -> SHORT;
pub fn GetKeyboardLayout(idThread: DWORD) -> HKL;
pub fn GetKeyboardLayoutList(nBuff: c_int, lpList: *mut HKL) -> c_int;
pub fn GetKeyboardLayoutNameA(pwszKLID: LPSTR) -> BOOL;
pub fn GetKeyboardLayoutNameW(pwszKLID: LPWSTR) -> BOOL;
pub fn GetKeyboardState(lpKeyState: PBYTE) -> BOOL;
pub fn GetKeyboardType(nTypeFlag: c_int) -> c_int;
pub fn GetLastActivePopup(hWnd: HWND) -> HWND;
pub fn GetMenu(hWnd: HWND) -> HMENU;
pub fn GetMessageTime() -> LONG;
pub fn GetMessageW(lpMsg: LPMSG, hWnd: HWND, wMsgFilterMin: UINT, wMsgFilterMax: UINT) -> BOOL;
pub fn GetMonitorInfoA(hMonitor: HMONITOR, lpmi: LPMONITORINFO) -> BOOL;
pub fn GetMonitorInfoW(hMonitor: HMONITOR, lpmi: LPMONITORINFO) -> BOOL;
pub fn GetNextDlgGroupItem(hDlg: HWND, hCtl: HWND, bPrevious: BOOL) -> HWND;
pub fn GetNextDlgTabItem(hDlg: HWND, hCtl: HWND, bPrevious: BOOL) -> HWND;
pub fn GetOpenClipboardWindow() -> HWND;
pub fn GetParent(hWnd: HWND) -> HWND;
pub fn GetPhysicalCursorPos(lpPoint: LPPOINT) -> BOOL;
pub fn GetPointerType(pointerId: UINT32, pointerType: *mut POINTER_INPUT_TYPE) -> BOOL;
pub fn GetPropA(hwnd: HWND, lpString: LPCSTR) -> HANDLE;
pub fn GetPropW(hwnd: HWND, lpString: LPCWSTR) -> HANDLE;
pub fn GetQueueStatus(flags: UINT) -> DWORD;
pub fn GetRawInputBuffer(pData: PRAWINPUT, pcbSize: PUINT, cbSizeHeader: UINT) -> UINT;
pub fn GetRawInputData(
hRawInput: HRAWINPUT, uiCommand: UINT, pData: LPVOID, pcbSize: PUINT, cbSizeHeader: UINT,
) -> UINT;
pub fn GetRawInputDeviceInfoA(
hDevice: HANDLE, uiCommand: UINT, pData: LPVOID, pcbSize: PUINT,
) -> UINT;
pub fn GetRawInputDeviceInfoW(
hDevice: HANDLE, uiCommand: UINT, pData: LPVOID, pcbSize: PUINT,
) -> UINT;
pub fn GetRawInputDeviceList(
pRawInputDeviceList: PRAWINPUTDEVICELIST, puiNumDevices: PUINT, cbSize: UINT,
) -> UINT;
pub fn GetRegisteredRawInputDevices(
pRawInputDevices: PRAWINPUTDEVICE, puiNumDevices: PUINT, cbSize: UINT,
) -> UINT;
pub fn GetScrollInfo(hwnd: HWND, nBar: c_int, lpsi: *mut SCROLLINFO) -> BOOL;
pub fn GetScrollPos(hWnd: HWND, nBar: c_int) -> c_int;
pub fn GetScrollRange(hWnd: HWND, nBar: c_int, lpMinPos: LPINT, lpMaxPos: LPINT) -> BOOL;
pub fn GetShellWindow() -> HWND;
pub fn GetSysColor(nIndex: c_int) -> DWORD;
pub fn GetSysColorBrush(nIndex: c_int) -> HBRUSH;
pub fn GetSystemMenu(hWnd: HWND, bRevert: BOOL) -> HMENU;
pub fn GetSystemMetrics(nIndex: c_int) -> c_int;
pub fn GetTabbedTextExtentA(hdc: HDC, lpString: LPCSTR, chCount: c_int, nTabPositions: c_int,
lpnTabStopPositions: *const INT
) -> DWORD;
pub fn GetTabbedTextExtentW(hdc: HDC, lpString: LPCWSTR, chCount: c_int, nTabPositions: c_int,
lpnTabStopPositions: *const INT
) -> DWORD;
pub fn GetThreadDesktop(dwThreadId: DWORD) -> HDESK;
pub fn GetTopWindow(hWnd: HWND) -> HWND;
pub fn GetTouchInputInfo(
hTouchInput: HTOUCHINPUT, cInputs: c_uint, pInputs: PTOUCHINPUT, cbSize: c_int
) -> BOOL;
pub fn GetUpdateRect(hWnd: HWND, lpRect: LPRECT, bErase: BOOL) -> BOOL;
pub fn GetUpdateRgn(hWnd: HWND, hRgn: HRGN, bErase: BOOL) -> c_int;
pub fn GetUpdatedClipboardFormats(
lpuiFormats: PUINT, cFormats: UINT, pcFormatsOUT: PUINT,
) -> BOOL;
pub fn GetWindow(hWnd: HWND, uCmd: UINT) -> HWND;
pub fn GetWindowContextHelpId(h: HWND) -> DWORD;
pub fn GetWindowDC(hWnd: HWND) -> HDC;
pub fn GetWindowLongA(hWnd: HWND, nIndex: c_int) -> LONG;
#[cfg(target_arch = "x86_64")]
pub fn GetWindowLongPtrA(hWnd: HWND, nIndex: c_int) -> LONG_PTR;
#[cfg(target_arch = "x86_64")]
pub fn GetWindowLongPtrW(hWnd: HWND, nIndex: c_int) -> LONG_PTR;
pub fn GetWindowLongW(hWnd: HWND, nIndex: c_int) -> LONG;
pub fn GetWindowModuleFileNameA(
hWnd: HWND, lpszFileName: LPCSTR, cchFileNameMax: UINT,
) -> UINT;
pub fn GetWindowModuleFileNameW(
hWnd: HWND, lpszFileName: LPWSTR, cchFileNameMax: UINT,
) -> UINT;
pub fn GetWindowPlacement(hWnd: HWND, lpwndpl: *mut WINDOWPLACEMENT) -> BOOL;
pub fn GetWindowRect(hWnd: HWND, lpRect: LPRECT) -> BOOL;
pub fn GetWindowRgn(hWnd: HWND, hRgn: HRGN) -> c_int;
pub fn GetWindowRgnBox(hWnd: HWND, lprc: LPRECT) -> c_int;
pub fn GetWindowTextA(hWnd: HWND, lpString: LPSTR, nMaxCount: c_int) -> c_int;
pub fn GetWindowTextLengthA(hWnd: HWND) -> c_int;
pub fn GetWindowTextLengthW(hWnd: HWND) -> c_int;
pub fn GetWindowTextW(hWnd: HWND, lpString: LPWSTR, nMaxCount: c_int) -> c_int;
pub fn GetWindowThreadProcessId(hWnd: HWND, lpdwProcessId: LPDWORD) -> DWORD;
pub fn GetWindowWord(hWnd: HWND,nIndex: c_int) -> WORD;
pub fn GrayStringA(
hDC: HDC, hBrush: HBRUSH, lpOutputFunc: GRAYSTRINGPROC, lpData: LPARAM, nCount: c_int,
X: c_int, Y: c_int, nWidth: c_int, nHeight: c_int,
) -> BOOL;
pub fn GrayStringW(
hDC: HDC, hBrush: HBRUSH, lpOutputFunc: GRAYSTRINGPROC, lpData: LPARAM, nCount: c_int,
X: c_int, Y: c_int, nWidth: c_int, nHeight: c_int,
) -> BOOL;
pub fn HideCaret(hWnd: HWND) -> BOOL;
pub fn HiliteMenuItem(hWnd: HWND, hMenu: HMENU, uIDHiliteItem: UINT, uHilite: UINT) -> BOOL;
pub fn InflateRect(lprc: LPRECT, dx: c_int, dy: c_int) -> BOOL;
pub fn InsertMenuA(
hMenu: HMENU, uPosition: UINT, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCSTR,
) -> BOOL;
pub fn InsertMenuItemA(
hmenu: HMENU, item: UINT, fByPosition: BOOL, lpmi: LPCMENUITEMINFOA,
) -> BOOL;
pub fn InsertMenuItemW(
hmenu: HMENU, item: UINT, fByPosition: BOOL, lpmi: LPCMENUITEMINFOW,
) -> BOOL;
pub fn InsertMenuW(
hMenu: HMENU, uPosition: UINT, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCWSTR,
) -> BOOL;
pub fn InternalGetWindowText(hWnd: HWND, pString: LPWSTR, cchMaxCount: c_int) -> c_int;
pub fn IntersectRect(
lprcDst: LPRECT, lprcSrc1: *const RECT, lprcSrc2: *const RECT,
) -> BOOL;
pub fn InvalidateRect(hWnd: HWND, lpRect: *const RECT, bErase: BOOL) -> BOOL;
pub fn InvalidateRgn(hWnd: HWND, hRgn: HRGN, bErase: BOOL) -> BOOL;
pub fn InvertRect(hDC: HDC, lprc: *const RECT) -> BOOL;
pub fn IsCharAlphaA(ch: CHAR) -> BOOL;
pub fn IsCharAlphaNumericA(ch: CHAR) -> BOOL;
pub fn IsCharAlphaNumericW(ch: WCHAR) -> BOOL;
pub fn IsCharAlphaW(ch: WCHAR) -> BOOL;
pub fn IsCharLowerA(ch: CHAR) -> BOOL;
pub fn IsCharLowerW(ch: WCHAR) -> BOOL;
pub fn IsCharUpperA(ch: CHAR) -> BOOL;
pub fn IsCharUpperW(ch: WCHAR) -> BOOL;
pub fn IsChild(hWndParent: HWND, hWnd: HWND) -> BOOL;
pub fn IsClipboardFormatAvailable(format: UINT) -> BOOL;
pub fn IsDialogMessageA(hDlg: HWND, lpMsg: LPMSG) -> BOOL;
pub fn IsDialogMessageW(hDlg: HWND, lpMsg: LPMSG) -> BOOL;
pub fn IsDlgButtonChecked(hDlg: HWND, nIDButton: c_int) -> UINT;
pub fn IsGUIThread(bConvert: BOOL) -> BOOL;
pub fn IsHungAppWindow(hwnd: HWND) -> BOOL;
pub fn IsIconic(hWnd: HWND) -> BOOL;
pub fn IsImmersiveProcess(hProcess: HANDLE) -> BOOL;
pub fn IsMenu(hMenu: HMENU) -> BOOL;
pub fn IsMouseInPointerEnabled() -> BOOL;
pub fn IsProcessDPIAware() -> BOOL;
pub fn IsRectEmpty(lprc: *const RECT) -> BOOL;
pub fn IsTouchWindow(hwnd: HWND, pulFlags: PULONG) -> BOOL;
pub fn IsWinEventHookInstalled(event: DWORD) -> BOOL;
pub fn IsWindow(hWnd: HWND) -> BOOL;
pub fn IsWindowEnabled(hWnd: HWND) -> BOOL;
pub fn IsWindowUnicode(hWnd: HWND) -> BOOL;
pub fn IsWindowVisible(hWnd: HWND) -> BOOL;
pub fn IsWow64Message() -> BOOL;
pub fn IsZoomed(hwnd: HWND) -> BOOL;
pub fn KillTimer(hwnd: HWND, uIDEvent: UINT_PTR) -> BOOL;
pub fn LoadAcceleratorsA(hInstance: HINSTANCE, lpTableName: LPCSTR) -> HACCEL;
pub fn LoadAcceleratorsW(hInstance: HINSTANCE, lpTableName: LPCWSTR) -> HACCEL;
pub fn LoadBitmapA(hInstance: HINSTANCE, lpBitmapName: LPCSTR) -> HBITMAP;
pub fn LoadBitmapW(hInstance: HINSTANCE, lpBitmapName: LPCWSTR) -> HBITMAP;
pub fn LoadCursorA(hInstance: HINSTANCE, lpCursorName: LPCSTR) -> HCURSOR;
pub fn LoadCursorFromFileA(lpFileName: LPCSTR) -> HCURSOR;
pub fn LoadCursorFromFileW(lpFileName: LPCWSTR) -> HCURSOR;
pub fn LoadCursorW(hInstance: HINSTANCE, lpCursorName: LPCWSTR) -> HCURSOR;
pub fn LoadIconA(hInstance: HINSTANCE, lpIconName: LPCSTR) -> HICON;
pub fn LoadIconW(hInstance: HINSTANCE, lpIconName: LPCWSTR) -> HICON;
pub fn LoadImageA(
hInst: HINSTANCE, name: LPCSTR, type_: UINT, cx: c_int, cy: c_int, fuLoad: UINT,
) -> HANDLE;
pub fn LoadImageW(
hInst: HINSTANCE, name: LPCWSTR, type_: UINT, cx: c_int, cy: c_int, fuLoad: UINT,
) -> HANDLE;
pub fn LoadKeyboardLayoutA(pwszKLID: LPCSTR, Flags: DWORD) -> HKL;
pub fn LoadKeyboardLayoutW(pwszKLID: LPCWSTR, Flags: DWORD) -> HKL;
pub fn LoadMenuA(hInstance: HINSTANCE, lpMenuName: LPCSTR) -> HMENU;
pub fn LoadMenuIndirectA(lpMenuTemplate: *const MENUTEMPLATEA) -> HMENU;
pub fn LoadMenuIndirectW(lpMenuTemplate: *const MENUTEMPLATEW) -> HMENU;
pub fn LoadMenuW(hInstance: HINSTANCE, lpMenuName: LPCWSTR) -> HMENU;
pub fn LoadStringA(
hInstance: HINSTANCE, uID: UINT, lpBuffer: LPSTR, cchBufferMax: c_int,
) -> c_int;
pub fn LoadStringW(
hInstance: HINSTANCE, uID: UINT, lpBuffer: LPWSTR, cchBufferMax: c_int,
) -> c_int;
pub fn LockSetForegroundWindow(uLockCode: UINT) -> BOOL;
pub fn LockWindowUpdate(hWndLock: HWND) -> BOOL;
pub fn LockWorkStation() -> BOOL;
pub fn LookupIconIdFromDirectory(presbits: PBYTE, fIcon: BOOL) -> c_int;
pub fn LookupIconIdFromDirectoryEx(
presbits: PBYTE, fIcon: BOOL, cxDesired: c_int, cyDesired: c_int, Flags: UINT,
) -> c_int;
pub fn MapDialogRect(hDlg: HWND, lpRect: LPRECT) -> BOOL;
pub fn MapVirtualKeyA(nCode: UINT, uMapType: UINT) -> UINT;
pub fn MapVirtualKeyExA(nCode: UINT, uMapType: UINT, dwhkl: HKL) -> UINT;
pub fn MapVirtualKeyExW(nCode: UINT, uMapType: UINT, dwhkl: HKL) -> UINT;
pub fn MapVirtualKeyW(nCode: UINT, uMapType: UINT) -> UINT;
pub fn MapWindowPoints(hWndFrom: HWND, hWndTo: HWND, lpPoints: LPPOINT, cPoints: UINT) -> c_int;
pub fn MenuItemFromPoint(hWnd: HWND, hMenu: HMENU, ptScreen: POINT) -> c_int;
pub fn MessageBeep(uType: UINT) -> BOOL;
pub fn MessageBoxA(hWnd: HWND, lpText: LPCSTR, lpCaption: LPCSTR, uType: UINT) -> c_int;
pub fn MessageBoxExA(
hWnd: HWND, lpText: LPCSTR, lpCaption: LPCSTR, uType: UINT, wLanguageId: WORD,
) -> c_int;
pub fn MessageBoxExW(
hWnd: HWND, lpText: LPCWSTR, lpCaption: LPCWSTR, uType: UINT, wLanguageId: WORD,
) -> c_int;
pub fn MessageBoxIndirectA(lpmbp: *const MSGBOXPARAMSA) -> c_int;
pub fn MessageBoxIndirectW(lpmbp: *const MSGBOXPARAMSW) -> c_int;
pub fn MessageBoxW(hWnd: HWND, lpText: LPCWSTR, lpCaption: LPCWSTR, uType: UINT) -> c_int;
pub fn ModifyMenuA(
hMnu: HMENU, uPosition: UINT, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCSTR,
) -> BOOL;
pub fn ModifyMenuW(
hMnu: HMENU, uPosition: UINT, uFlags: UINT, uIDNewItem: UINT_PTR, lpNewItem: LPCWSTR,
) -> BOOL;
pub fn MonitorFromPoint(pt: POINT, dwFlags: DWORD) -> HMONITOR;
pub fn MonitorFromRect(lprc: LPCRECT, dwFlags: DWORD) -> HMONITOR;
pub fn MonitorFromWindow(hwnd: HWND, dwFlags: DWORD) -> HMONITOR;
pub fn MoveWindow(
hWnd: HWND, X: c_int, Y: c_int, nWidth: c_int, nHeight: c_int, bRepaint: BOOL,
) -> BOOL;
pub fn MsgWaitForMultipleObjects(
nCount: DWORD, pHandles: *const HANDLE, fWaitAll: BOOL, dwMilliseconds: DWORD,
dwWakeMask: UINT,
) -> DWORD;
pub fn MsgWaitForMultipleObjectsEx(
nCount: DWORD, pHandles: *const HANDLE, dwMilliseconds: DWORD, dwWakeMask: UINT,
dwFlags: DWORD,
) -> DWORD;
pub fn NotifyWinEvent(event: DWORD, hwnd: HWND, idObject: LONG, idChild: LONG);
pub fn OemKeyScan(wOemChar: WORD) -> DWORD;
pub fn OemToCharA(pSrc: LPCSTR, pDst: LPSTR) -> BOOL;
pub fn OemToCharBuffA(lpszSrc: LPCSTR, lpszDst: LPSTR, cchDstLength: DWORD) -> BOOL;
pub fn OemToCharBuffW(lpszSrc: LPCSTR, lpszDst: LPWSTR, cchDstLength: DWORD) -> BOOL;
pub fn OemToCharW(pSrc: LPCSTR, pDst: LPWSTR) -> BOOL;
pub fn OffsetRect(lprc: LPRECT, dx: c_int, dy: c_int) -> BOOL;
pub fn OpenClipboard(hWnd: HWND) -> BOOL;
pub fn OpenDesktopA(
lpszDesktop: LPCSTR, dwFlags: DWORD, fInherit: BOOL, dwDesiredAccess: ACCESS_MASK,
) -> HDESK;
pub fn OpenDesktopW(
lpszDesktop: LPCWSTR, dwFlags: DWORD, fInherit: BOOL, dwDesiredAccess: ACCESS_MASK,
) -> HDESK;
pub fn OpenIcon(hWnd: HWND) -> BOOL;
pub fn OpenInputDesktop(dwFlags: DWORD, fInherit: BOOL, dwDesiredAccess: ACCESS_MASK) -> HDESK;
pub fn OpenWindowStationA(
lpszWinSta: LPCSTR, fInherit: BOOL, dwDesiredAccess: ACCESS_MASK,
) -> HWINSTA;
pub fn OpenWindowStationW(
lpszWinSta: LPCWSTR, fInherit: BOOL, dwDesiredAccess: ACCESS_MASK,
) -> HWINSTA;
pub fn PackDDElParam(msg: UINT, uiLo: UINT_PTR, uiHi: UINT_PTR) -> LPARAM;
pub fn PaintDesktop(hdc: HDC) -> BOOL;
pub fn PeekMessageA(
lpMsg: LPMSG, hWnd: HWND, wMsgFilterMin: UINT, wMsgFilterMax: UINT, wRemoveMsg: UINT,
) -> BOOL;
pub fn PeekMessageW(
lpMsg: LPMSG, hWnd: HWND, wMsgFilterMin: UINT, wMsgFilterMax: UINT, wRemoveMsg: UINT,
) -> BOOL;
pub fn PostMessageA(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL;
pub fn PostMessageW(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL;
pub fn PostQuitMessage(nExitCode: c_int);
pub fn PostThreadMessageA(
idThread: DWORD, msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> BOOL;
pub fn PostThreadMessageW(
idThread: DWORD, msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> BOOL;
pub fn PrintWindow(hwnd: HWND, hdcBlt: HDC, nFlags: UINT) -> BOOL;
pub fn PtInRect(lprc: *const RECT, pt: POINT) -> BOOL;
pub fn RealChildWindowFromPoint(
hwndParent: HWND, ptParentClientCoords: POINT,
) -> HWND;
pub fn RealGetWindowClass(
hwnd: HWND, ptszClassName: LPSTR, cchClassNameMax: UINT,
) -> UINT;
pub fn RealGetWindowClassA(
hwnd: HWND, ptszClassName: LPSTR, cchClassNameMax: UINT,
) -> UINT;
pub fn RealGetWindowClassW(
hwnd: HWND, ptszClassName: LPWSTR, cchClassNameMax: UINT,
) -> UINT;
pub fn RedrawWindow(
hwnd: HWND, lprcUpdate: *const RECT, hrgnUpdate: HRGN, flags: UINT,
) -> BOOL;
pub fn RegisterClassExW(lpWndClass: *const WNDCLASSEXW) -> ATOM;
pub fn RegisterClassW(lpWndClass: *const WNDCLASSW) -> ATOM;
pub fn RegisterClipboardFormatA(lpszFormat: LPCSTR) -> UINT;
pub fn RegisterClipboardFormatW(lpszFormat: LPCWSTR) -> UINT;
pub fn RegisterDeviceNotificationA(
hRecipient: HANDLE, notificationFilter: LPVOID, flags: DWORD,
) -> HDEVNOTIFY;
pub fn RegisterDeviceNotificationW(
hRecipient: HANDLE, notificationFilter: LPVOID, flags: DWORD,
) -> HDEVNOTIFY;
pub fn RegisterHotKey(hwnd: HWND, id: c_int, fsModifiers: UINT, vk: UINT) -> BOOL;
pub fn RegisterRawInputDevices(
pRawInputDevices: PCRAWINPUTDEVICE, uiNumDevices: UINT, cbSize: UINT,
) -> BOOL;
pub fn RegisterTouchWindow(hWnd: HWND, flags: ULONG) -> BOOL;
pub fn RegisterWindowMessageA(lpString: LPCSTR) -> UINT;
pub fn RegisterWindowMessageW(lpString: LPCWSTR) -> UINT;
pub fn ReleaseCapture() -> BOOL;
pub fn ReleaseDC(hWnd: HWND, hDC: HDC) -> c_int;
pub fn RemovePropA(hWnd: HWND, lpStr: LPCSTR) -> HANDLE;
pub fn RemovePropW(hWnd: HWND, lpStr: LPCWSTR) -> HANDLE;
pub fn ScreenToClient(hWnd: HWND, lpPoint: LPPOINT) -> BOOL;
pub fn ScrollDC(
hDC: HDC, dx: c_int, dy: c_int, lprcScroll: *const RECT, lprcClip: *const RECT,
hrgnUpdate: HRGN, lprcUpdate: LPRECT,
) -> BOOL;
pub fn ScrollWindow(
hWnd: HWND, xAmount: c_int, yAmount: c_int, lpRect: *const RECT, lpClipRect: *const RECT,
) -> BOOL;
pub fn ScrollWindowEx(
hWnd: HWND, dx: c_int, dy: c_int, prcScroll: *const RECT, prcClip: *const RECT,
hrgnUpdate: HRGN, prcUpdate: LPRECT, flags: UINT,
) -> c_int;
pub fn SendDlgItemMessageA(
hDlg: HWND, nIDDlgItem: c_int, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn SendDlgItemMessageW(
hDlg: HWND, nIDDlgItem: c_int, Msg: UINT, wParam: WPARAM, lParam: LPARAM,
) -> LRESULT;
pub fn SendInput(cInputs: UINT, pInputs: LPINPUT, cbSize: c_int) -> UINT;
pub fn SendMessageA(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT;
pub fn SendMessageTimeoutA(
hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM, fuFlags: UINT, uTimeout: UINT,
lpdwResult: PDWORD_PTR,
) -> LRESULT;
pub fn SendMessageTimeoutW(
hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM, fuFlags: UINT, uTimeout: UINT,
lpdwResult: PDWORD_PTR,
) -> LRESULT;
pub fn SendMessageW(hWnd: HWND, Msg: UINT, wParam: WPARAM, lParam: LPARAM) -> LRESULT;
pub fn SendNotifyMessageA(hWnd: HWND, msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL;
pub fn SendNotifyMessageW(hWnd: HWND, msg: UINT, wParam: WPARAM, lParam: LPARAM) -> BOOL;
pub fn SetActiveWindow(hWnd: HWND) -> HWND;
pub fn SetCapture(hWnd: HWND) -> HWND;
pub fn SetCaretBlinkTime(uMSeconds: UINT) -> BOOL;
pub fn SetCaretPos(x: c_int, y: c_int) -> BOOL;
pub fn SetClassLongA(hWnd: HWND, nIndex: c_int, dwNewLong: LONG) -> DWORD;
#[cfg(target_arch = "x86_64")]
pub fn SetClassLongPtrA(hWnd: HWND, nIndex: c_int, dwNewLong: LONG_PTR) -> ULONG_PTR;
#[cfg(target_arch = "x86_64")]
pub fn SetClassLongPtrW(hWnd: HWND, nIndex: c_int, dwNewLong: LONG_PTR) -> ULONG_PTR;
pub fn SetClassLongW(hWnd: HWND, nIndex: c_int, dwNewLong: LONG) -> DWORD;
pub fn SetClassWord(hWnd: HWND, nIndex: c_int, wNewWord: WORD) -> WORD;
pub fn SetClipboardData(uFormat: UINT, hMem: HANDLE) -> HANDLE;
pub fn SetClipboardViewer(hWndNewViewer: HWND) -> HWND;
pub fn SetCursor(hCursor: HCURSOR) -> HCURSOR;
pub fn SetCursorPos(x: c_int, y: c_int) -> BOOL;
pub fn SetDlgItemInt(hDlg: HWND, nIDDlgItem: c_int, uValue: UINT, bSigned: BOOL) -> BOOL;
pub fn SetDlgItemTextA(hDlg: HWND, nIDDlgItem: c_int, lpString: LPCSTR) -> BOOL;
pub fn SetDlgItemTextW(hDlg: HWND, nIDDlgItem: c_int, lpString: LPCWSTR) -> BOOL;
pub fn SetDoubleClickTime(uInterval: UINT) -> BOOL;
pub fn SetFocus(hWnd: HWND) -> HWND;
pub fn SetForegroundWindow(hWnd: HWND) -> BOOL;
pub fn SetKeyboardState(lpKeyState: LPBYTE) -> BOOL;
pub fn SetLastErrorEx(dwErrCode: DWORD, dwType: DWORD);
pub fn SetLayeredWindowAttributes(
hwnd: HWND, crKey: COLORREF, bAlpha: BYTE, dwFlags: DWORD
) -> BOOL;
pub fn SetMenu(hWnd: HWND, hMenu: HMENU) -> BOOL;
pub fn SetParent(hWndChild: HWND, hWndNewParent: HWND) -> HWND;
pub fn SetPhysicalCursorPos(x: c_int, y: c_int) -> BOOL;
pub fn SetPropA(hWnd: HWND, lpString: LPCSTR, hData: HANDLE) -> BOOL;
pub fn SetPropW(hWnd: HWND, lpString: LPCWSTR, hData: HANDLE) -> BOOL;
pub fn SetRect(lprc: LPRECT, xLeft: c_int, yTop: c_int, xRight: c_int, yBottom: c_int) -> BOOL;
pub fn SetRectEmpty(lprc: LPRECT) -> BOOL;
pub fn SetScrollInfo(hwnd: HWND, nBar: c_int, lpsi: *const SCROLLINFO, redraw: BOOL) -> c_int;
pub fn SetScrollPos(hWnd: HWND, nBar: c_int, nPos: c_int, bRedraw: BOOL) -> c_int;
pub fn SetScrollRange(
hWnd: HWND, nBar: c_int, nMinPos: c_int, nMaxPos: c_int, bRedraw: BOOL,
) -> BOOL;
pub fn SetSysColors(
cElements: c_int, lpaElements: *const INT, lpaRgbValues: *const COLORREF,
) -> BOOL;
pub fn SetSystemCursor(hcur: HCURSOR, id: DWORD) -> BOOL;
pub fn SetThreadDesktop(hDesktop: HDESK) -> BOOL;
pub fn SetTimer(
hWnd: HWND, nIDEvent: UINT_PTR, uElapse: UINT, lpTimerFunc: TimerProc,
) -> UINT_PTR;
pub fn SetWinEventHook(
eventMin: DWORD, eventMax: DWORD, hmodWinEventProc: HMODULE, pfnWinEventProc: WINEVENTPROC,
idProcess: DWORD, idThread: DWORD, dwFlags: DWORD,
) -> HWINEVENTHOOK;
pub fn SetWindowContextHelpId(h: HWND, d: DWORD) -> BOOL;
pub fn SetWindowLongA(hWnd: HWND, nIndex: c_int, dwNewLong: LONG) -> LONG;
#[cfg(target_arch = "x86_64")]
pub fn SetWindowLongPtrA(hWnd: HWND, nIndex: c_int, dwNewLong: LONG_PTR) -> LONG_PTR;
#[cfg(target_arch = "x86_64")]
pub fn SetWindowLongPtrW(hWnd: HWND, nIndex: c_int, dwNewLong: LONG_PTR) -> LONG_PTR;
pub fn SetWindowLongW(hWnd: HWND, nIndex: c_int, dwNewLong: LONG) -> LONG;
pub fn SetWindowPlacement(hWnd: HWND, lpwndpl: *const WINDOWPLACEMENT) -> BOOL;
pub fn SetWindowPos(
hWnd: HWND, hWndInsertAfter: HWND, X: c_int, Y: c_int, cx: c_int, cy: c_int, uFlags: UINT,
) -> BOOL;
pub fn SetWindowRgn(hWnd: HWND, hRgn: HRGN, bRedraw: BOOL) -> c_int;
pub fn SetWindowTextA(hWnd: HWND, lpString: LPCSTR) -> BOOL;
pub fn SetWindowTextW(hWnd: HWND, lpString: LPCWSTR) -> BOOL;
pub fn SetWindowWord(hwnd: HWND, nIndex: c_int, wNewWord: WORD) -> WORD;
pub fn SetWindowsHookExA(
idHook: c_int, lpfn: HOOKPROC, hmod: HINSTANCE, dwThreadId: DWORD,
) -> HHOOK;
pub fn SetWindowsHookExW(
idHook: c_int, lpfn: HOOKPROC, hmod: HINSTANCE, dwThreadId: DWORD,
) -> HHOOK;
pub fn ShowCaret(hWnd: HWND) -> BOOL;
pub fn ShowCursor(bShow: BOOL) -> c_int;
pub fn ShowOwnedPopups(hWnd: HWND, fShow: BOOL) -> BOOL;
pub fn ShowScrollBar(hWnd: HWND, wBar: c_int, bShow: BOOL) -> BOOL;
pub fn ShowWindow(hWnd: HWND, nCmdShow: c_int) -> BOOL;
pub fn ShowWindowAsync(hWnd: HWND, nCmdShow: c_int) -> BOOL;
pub fn SwapMouseButton(fSwap: BOOL) -> BOOL;
pub fn SwitchDesktop(hDesktop: HDESK) -> BOOL;
pub fn SystemParametersInfoA(
uiAction: UINT, uiParam: UINT, pvParam: PVOID, fWinIni: UINT
) -> BOOL;
pub fn SystemParametersInfoW(
uiAction: UINT, uiParam: UINT, pvParam: PVOID, fWinIni: UINT
) -> BOOL;
pub fn TabbedTextOutA(
hdc: HDC, x: c_int, y: c_int, lpString: LPCSTR, chCount: c_int, nTabPositions: c_int,
lpnTabStopPositions: *const INT, nTabOrigin: c_int,
) -> LONG;
pub fn TabbedTextOutW(
hdc: HDC, x: c_int, y: c_int, lpString: LPCWSTR, chCount: c_int, nTabPositions: c_int,
lpnTabStopPositions: *const INT, nTabOrigin: c_int,
) -> LONG;
pub fn ToUnicode(
wVirtKey: UINT, wScanCode: UINT, lpKeyState: *const BYTE, lwszBuff: LPWSTR, cchBuff: c_int,
wFlags: UINT
) -> c_int;
pub fn TrackMouseEvent(lpEventTrack: LPTRACKMOUSEEVENT) -> BOOL;
pub fn TranslateMessage(lpmsg: *const MSG) -> BOOL;
pub fn UnhookWinEvent(hWinEventHook: HWINEVENTHOOK) -> BOOL;
pub fn UnhookWindowsHookEx(hhk: HHOOK) -> BOOL;
pub fn UnionRect(lprcDst: LPRECT, lprcSrc1: *const RECT, lprcSrc2: *const RECT) -> BOOL;
pub fn UnloadKeyboardLayout(hkl: HKL) -> BOOL;
pub fn UnpackDDElParam(msg: UINT, lParam: LPARAM, puiLo: PUINT_PTR, puiHi: PUINT_PTR) -> BOOL;
pub fn UnregisterClassA(lpClassName: LPCSTR, hInstance: HINSTANCE) -> BOOL;
pub fn UnregisterClassW(lpClassName: LPCWSTR, hInstance: HINSTANCE) -> BOOL;
pub fn UnregisterDeviceNotification(Handle: HDEVNOTIFY) -> BOOL;
pub fn UnregisterHotKey(hWnd: HWND, id: c_int) -> BOOL;
pub fn UpdateLayeredWindow(
hWnd: HWND, hdcDst: HDC, pptDst: *mut POINT, psize: *mut SIZE, hdcSrc: HDC,
pptSrc: *mut POINT, crKey: COLORREF, pblend: *mut BLENDFUNCTION, dwFlags: DWORD,
) -> BOOL;
pub fn UpdateWindow(hWnd: HWND) -> BOOL;
pub fn UserHandleGrantAccess(hUserHandle: HANDLE, hJob: HANDLE, bGrant: BOOL) -> BOOL;
pub fn ValidateRect(hWnd: HWND, lpRect: *const RECT) -> BOOL;
pub fn ValidateRgn(hWnd: HWND, hRgn: HRGN) -> BOOL;
pub fn VkKeyScanA(ch: CHAR) -> SHORT;
pub fn VkKeyScanExA(ch: CHAR, dwhkl: HKL) -> SHORT;
pub fn VkKeyScanExW(ch: WCHAR, dwhkl: HKL) -> SHORT;
pub fn VkKeyScanW(ch: WCHAR) -> SHORT;
pub fn WaitForInputIdle(hProcess: HANDLE, dwMilliseconds: DWORD) -> DWORD;
pub fn WaitMessage() -> BOOL;
pub fn WinHelpA(hWndMain: HWND, lpszHelp: LPCSTR, uCommand: UINT, dwData: ULONG_PTR) -> BOOL;
pub fn WinHelpW(hWndMain: HWND, lpszHelp: LPCWSTR, uCommand: UINT, dwData: ULONG_PTR) -> BOOL;
pub fn WindowFromDC(hDC: HDC) -> HWND;
pub fn WindowFromPoint(Point: POINT) -> HWND;
pub fn keybd_event(bVk: BYTE, bScan: BYTE, dwFlags: DWORD, dwExtraInfo: ULONG_PTR);
pub fn mouse_event(dwFlags: DWORD, dx: DWORD, dy: DWORD, dwData: DWORD, dwExtraInfo: ULONG_PTR);
}