This repository has been archived by the owner on Jan 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
user32.go
6124 lines (5573 loc) · 172 KB
/
user32.go
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
// This file was automatically generated by https://github.com/kbinani/win/blob/generator/internal/cmd/gen/gen.go
// go run internal/cmd/gen/gen.go
// +build windows
package win
import (
"syscall"
"unsafe"
)
var (
// Library
libuser32 uintptr
// Functions
activateKeyboardLayout uintptr
adjustWindowRect uintptr
adjustWindowRectEx uintptr
allowSetForegroundWindow uintptr
animateWindow uintptr
anyPopup uintptr
appendMenu uintptr
arrangeIconicWindows uintptr
attachThreadInput uintptr
beginDeferWindowPos uintptr
beginPaint uintptr
blockInput uintptr
bringWindowToTop uintptr
broadcastSystemMessageEx uintptr
broadcastSystemMessage uintptr
callMsgFilter uintptr
callNextHookEx uintptr
callWindowProc uintptr
cascadeWindows uintptr
changeClipboardChain uintptr
changeDisplaySettingsEx uintptr
changeDisplaySettings uintptr
changeMenu uintptr
charLowerBuff uintptr
charLower uintptr
charNextExA uintptr
charNext uintptr
charPrevExA uintptr
charPrev uintptr
charToOemBuff uintptr
charToOem uintptr
charUpperBuff uintptr
charUpper uintptr
checkDlgButton uintptr
checkMenuItem uintptr
checkMenuRadioItem uintptr
checkRadioButton uintptr
childWindowFromPoint uintptr
childWindowFromPointEx uintptr
clientToScreen uintptr
clipCursor uintptr
closeClipboard uintptr
closeDesktop uintptr
closeGestureInfoHandle uintptr
closeTouchInputHandle uintptr
closeWindow uintptr
closeWindowStation uintptr
copyAcceleratorTable uintptr
copyIcon uintptr
copyImage uintptr
copyRect uintptr
countClipboardFormats uintptr
createAcceleratorTable uintptr
createCaret uintptr
createCursor uintptr
createDesktop uintptr
createDialogIndirectParam uintptr
createDialogParam uintptr
createIcon uintptr
createIconFromResource uintptr
createIconFromResourceEx uintptr
createIconIndirect uintptr
createMDIWindow uintptr
createMenu uintptr
createPopupMenu uintptr
createWindowEx uintptr
createWindowStation uintptr
ddeAbandonTransaction uintptr
ddeAccessData uintptr
ddeAddData uintptr
ddeClientTransaction uintptr
ddeCmpStringHandles uintptr
ddeConnect uintptr
ddeConnectList uintptr
ddeCreateDataHandle uintptr
ddeCreateStringHandle uintptr
ddeDisconnect uintptr
ddeDisconnectList uintptr
ddeEnableCallback uintptr
ddeFreeDataHandle uintptr
ddeFreeStringHandle uintptr
ddeGetData uintptr
ddeGetLastError uintptr
ddeImpersonateClient uintptr
ddeInitialize uintptr
ddeKeepStringHandle uintptr
ddeNameService uintptr
ddePostAdvise uintptr
ddeQueryConvInfo uintptr
ddeQueryNextServer uintptr
ddeQueryString uintptr
ddeReconnect uintptr
ddeSetQualityOfService uintptr
ddeSetUserHandle uintptr
ddeUnaccessData uintptr
ddeUninitialize uintptr
defDlgProc uintptr
defFrameProc uintptr
defMDIChildProc uintptr
defRawInputProc uintptr
defWindowProc uintptr
deferWindowPos uintptr
deleteMenu uintptr
deregisterShellHookWindow uintptr
destroyAcceleratorTable uintptr
destroyCaret uintptr
destroyCursor uintptr
destroyIcon uintptr
destroyMenu uintptr
destroyWindow uintptr
dialogBoxIndirectParam uintptr
dialogBoxParam uintptr
disableProcessWindowsGhosting uintptr
dispatchMessage uintptr
dlgDirListComboBox uintptr
dlgDirList uintptr
dlgDirSelectComboBoxEx uintptr
dlgDirSelectEx uintptr
dragDetect uintptr
dragObject uintptr
drawAnimatedRects uintptr
drawCaption uintptr
drawEdge uintptr
drawFocusRect uintptr
drawFrameControl uintptr
drawIcon uintptr
drawIconEx uintptr
drawMenuBar uintptr
drawState uintptr
drawTextEx uintptr
drawText uintptr
emptyClipboard uintptr
enableMenuItem uintptr
enableScrollBar uintptr
enableWindow uintptr
endDeferWindowPos uintptr
endDialog uintptr
endMenu uintptr
endPaint uintptr
endTask uintptr
enumChildWindows uintptr
enumClipboardFormats uintptr
enumDesktopWindows uintptr
enumDesktops uintptr
enumDisplayDevices uintptr
enumDisplayMonitors uintptr
enumDisplaySettingsEx uintptr
enumDisplaySettings uintptr
enumPropsEx uintptr
enumProps uintptr
enumThreadWindows uintptr
enumWindowStations uintptr
enumWindows uintptr
equalRect uintptr
excludeUpdateRgn uintptr
exitWindowsEx uintptr
fillRect uintptr
findWindowEx uintptr
findWindow uintptr
flashWindow uintptr
flashWindowEx uintptr
frameRect uintptr
freeDDElParam uintptr
getActiveWindow uintptr
getAltTabInfo uintptr
getAncestor uintptr
getAsyncKeyState uintptr
getCapture uintptr
getCaretBlinkTime uintptr
getCaretPos uintptr
getClassInfoEx uintptr
getClassInfo uintptr
getClassLongPtr uintptr
getClassLong uintptr
getClassName uintptr
getClassWord uintptr
getClientRect uintptr
getClipCursor uintptr
getClipboardData uintptr
getClipboardFormatName uintptr
getClipboardOwner uintptr
getClipboardSequenceNumber uintptr
getClipboardViewer uintptr
getComboBoxInfo uintptr
getCursor uintptr
getCursorInfo uintptr
getCursorPos uintptr
getDC uintptr
getDCEx uintptr
getDesktopWindow uintptr
getDialogBaseUnits uintptr
getDlgCtrlID uintptr
getDlgItem uintptr
getDlgItemInt uintptr
getDlgItemText uintptr
getDoubleClickTime uintptr
getFocus uintptr
getForegroundWindow uintptr
getGUIThreadInfo uintptr
getGestureConfig uintptr
getGestureExtraArgs uintptr
getGestureInfo uintptr
getGuiResources uintptr
getIconInfo uintptr
getInputState uintptr
getKBCodePage uintptr
getKeyNameText uintptr
getKeyState uintptr
getKeyboardLayout uintptr
getKeyboardLayoutList uintptr
getKeyboardLayoutName uintptr
getKeyboardState uintptr
getKeyboardType uintptr
getLastActivePopup uintptr
getLastInputInfo uintptr
getLayeredWindowAttributes uintptr
getListBoxInfo uintptr
getMenu uintptr
getMenuBarInfo uintptr
getMenuCheckMarkDimensions uintptr
getMenuContextHelpId uintptr
getMenuDefaultItem uintptr
getMenuInfo uintptr
getMenuItemCount uintptr
getMenuItemID uintptr
getMenuItemInfo uintptr
getMenuItemRect uintptr
getMenuState uintptr
getMenuString uintptr
getMessageExtraInfo uintptr
getMessagePos uintptr
getMessageTime uintptr
getMessage uintptr
getMonitorInfo uintptr
getMouseMovePointsEx uintptr
getNextDlgGroupItem uintptr
getNextDlgTabItem uintptr
getOpenClipboardWindow uintptr
getParent uintptr
getPriorityClipboardFormat uintptr
getProcessDefaultLayout uintptr
getProcessWindowStation uintptr
getProp uintptr
getQueueStatus uintptr
getRawInputBuffer uintptr
getRawInputData uintptr
getRawInputDeviceInfo uintptr
getRawInputDeviceList uintptr
getRegisteredRawInputDevices uintptr
getScrollBarInfo uintptr
getScrollInfo uintptr
getScrollPos uintptr
getScrollRange uintptr
getShellWindow uintptr
getSubMenu uintptr
getSysColor uintptr
getSysColorBrush uintptr
getSystemMenu uintptr
getSystemMetrics uintptr
getTabbedTextExtent uintptr
getThreadDesktop uintptr
getTitleBarInfo uintptr
getTopWindow uintptr
getTouchInputInfo uintptr
getUpdateRect uintptr
getUpdateRgn uintptr
getUserObjectInformation uintptr
getUserObjectSecurity uintptr
getWindow uintptr
getWindowContextHelpId uintptr
getWindowDC uintptr
getWindowInfo uintptr
getWindowLongPtr uintptr
getWindowLong uintptr
getWindowModuleFileName uintptr
getWindowPlacement uintptr
getWindowRect uintptr
getWindowRgn uintptr
getWindowRgnBox uintptr
getWindowTextLength uintptr
getWindowText uintptr
getWindowThreadProcessId uintptr
getWindowWord uintptr
grayString uintptr
hideCaret uintptr
hiliteMenuItem uintptr
iMPGetIME uintptr
iMPQueryIME uintptr
iMPSetIME uintptr
impersonateDdeClientWindow uintptr
inSendMessage uintptr
inSendMessageEx uintptr
inflateRect uintptr
insertMenuItem uintptr
insertMenu uintptr
internalGetWindowText uintptr
intersectRect uintptr
invalidateRect uintptr
invalidateRgn uintptr
invertRect uintptr
isCharAlphaNumeric uintptr
isCharAlpha uintptr
isCharLower uintptr
isCharUpper uintptr
isChild uintptr
isClipboardFormatAvailable uintptr
isDialogMessage uintptr
isDlgButtonChecked uintptr
isGUIThread uintptr
isHungAppWindow uintptr
isIconic uintptr
isMenu uintptr
isRectEmpty uintptr
isTouchWindow uintptr
isWinEventHookInstalled uintptr
isWindow uintptr
isWindowEnabled uintptr
isWindowUnicode uintptr
isWindowVisible uintptr
isWow64Message uintptr
isZoomed uintptr
killTimer uintptr
loadAccelerators uintptr
loadBitmap uintptr
loadCursorFromFile uintptr
loadCursor uintptr
loadIcon uintptr
loadImage uintptr
loadKeyboardLayout uintptr
loadMenuIndirect uintptr
loadMenu uintptr
loadString uintptr
lockSetForegroundWindow uintptr
lockWindowUpdate uintptr
lockWorkStation uintptr
lookupIconIdFromDirectory uintptr
lookupIconIdFromDirectoryEx uintptr
mapDialogRect uintptr
mapVirtualKeyEx uintptr
mapVirtualKey uintptr
mapWindowPoints uintptr
menuItemFromPoint uintptr
messageBeep uintptr
messageBoxEx uintptr
messageBoxIndirect uintptr
messageBox uintptr
modifyMenu uintptr
monitorFromPoint uintptr
monitorFromRect uintptr
monitorFromWindow uintptr
moveWindow uintptr
msgWaitForMultipleObjects uintptr
msgWaitForMultipleObjectsEx uintptr
notifyWinEvent uintptr
oemKeyScan uintptr
oemToCharBuff uintptr
oemToChar uintptr
offsetRect uintptr
openClipboard uintptr
openDesktop uintptr
openIcon uintptr
openInputDesktop uintptr
openWindowStation uintptr
packDDElParam uintptr
paintDesktop uintptr
peekMessage uintptr
postMessage uintptr
postQuitMessage uintptr
postThreadMessage uintptr
printWindow uintptr
privateExtractIcons uintptr
ptInRect uintptr
realChildWindowFromPoint uintptr
realGetWindowClass uintptr
redrawWindow uintptr
registerClassEx uintptr
registerClass uintptr
registerClipboardFormat uintptr
registerDeviceNotification uintptr
registerHotKey uintptr
registerPowerSettingNotification uintptr
registerRawInputDevices uintptr
registerShellHookWindow uintptr
registerTouchWindow uintptr
registerWindowMessage uintptr
releaseCapture uintptr
releaseDC uintptr
removeMenu uintptr
removeProp uintptr
replyMessage uintptr
reuseDDElParam uintptr
screenToClient uintptr
scrollDC uintptr
scrollWindow uintptr
scrollWindowEx uintptr
sendDlgItemMessage uintptr
sendIMEMessageEx uintptr
sendInput uintptr
sendMessageCallback uintptr
sendMessageTimeout uintptr
sendMessage uintptr
sendNotifyMessage uintptr
setActiveWindow uintptr
setCapture uintptr
setCaretBlinkTime uintptr
setCaretPos uintptr
setClassLongPtr uintptr
setClassLong uintptr
setClassWord uintptr
setClipboardData uintptr
setClipboardViewer uintptr
setCursor uintptr
setCursorPos uintptr
setDebugErrorLevel uintptr
setDlgItemInt uintptr
setDlgItemText uintptr
setDoubleClickTime uintptr
setFocus uintptr
setForegroundWindow uintptr
setGestureConfig uintptr
setKeyboardState uintptr
setLastErrorEx uintptr
setLayeredWindowAttributes uintptr
setMenu uintptr
setMenuContextHelpId uintptr
setMenuDefaultItem uintptr
setMenuInfo uintptr
setMenuItemBitmaps uintptr
setMenuItemInfo uintptr
setMessageExtraInfo uintptr
setMessageQueue uintptr
setParent uintptr
setProcessDefaultLayout uintptr
setProcessWindowStation uintptr
setProp uintptr
setRect uintptr
setRectEmpty uintptr
setScrollInfo uintptr
setScrollPos uintptr
setScrollRange uintptr
setSysColors uintptr
setSystemCursor uintptr
setThreadDesktop uintptr
setTimer uintptr
setUserObjectInformation uintptr
setUserObjectSecurity uintptr
setWinEventHook uintptr
setWindowContextHelpId uintptr
setWindowLongPtr uintptr
setWindowLong uintptr
setWindowPlacement uintptr
setWindowPos uintptr
setWindowRgn uintptr
setWindowText uintptr
setWindowWord uintptr
setWindowsHookEx uintptr
setWindowsHook uintptr
showCaret uintptr
showCursor uintptr
showOwnedPopups uintptr
showScrollBar uintptr
showWindow uintptr
showWindowAsync uintptr
subtractRect uintptr
swapMouseButton uintptr
switchDesktop uintptr
switchToThisWindow uintptr
systemParametersInfo uintptr
tabbedTextOut uintptr
tileWindows uintptr
toAscii uintptr
toAsciiEx uintptr
toUnicode uintptr
toUnicodeEx uintptr
trackMouseEvent uintptr
trackPopupMenu uintptr
trackPopupMenuEx uintptr
translateAccelerator uintptr
translateMDISysAccel uintptr
translateMessage uintptr
unhookWinEvent uintptr
unhookWindowsHook uintptr
unhookWindowsHookEx uintptr
unionRect uintptr
unloadKeyboardLayout uintptr
unpackDDElParam uintptr
unregisterClass uintptr
unregisterDeviceNotification uintptr
unregisterHotKey uintptr
unregisterPowerSettingNotification uintptr
unregisterTouchWindow uintptr
updateLayeredWindow uintptr
updateLayeredWindowIndirect uintptr
updateWindow uintptr
userHandleGrantAccess uintptr
validateRect uintptr
validateRgn uintptr
vkKeyScanEx uintptr
vkKeyScan uintptr
wINNLSEnableIME uintptr
wINNLSGetEnableStatus uintptr
wINNLSGetIMEHotkey uintptr
waitForInputIdle uintptr
waitMessage uintptr
winHelp uintptr
windowFromDC uintptr
windowFromPoint uintptr
keybd_event uintptr
mouse_event uintptr
alignRects uintptr
cascadeChildWindows uintptr
createDialogIndirectParamAorW uintptr
dialogBoxIndirectParamAorW uintptr
drawCaptionTemp uintptr
drawMenuBarTemp uintptr
getAppCompatFlags uintptr
getAppCompatFlags2 uintptr
getCursorFrameInfo uintptr
getInternalWindowPos uintptr
getProgmanWindow uintptr
getTaskmanWindow uintptr
killSystemTimer uintptr
loadLocalFonts uintptr
messageBoxTimeout uintptr
privateExtractIconEx uintptr
registerLogonProcess uintptr
registerServicesProcess uintptr
registerSystemThread uintptr
registerTasklist uintptr
scrollChildren uintptr
setInternalWindowPos uintptr
setLogonNotifyWindow uintptr
setProgmanWindow uintptr
setShellWindow uintptr
setShellWindowEx uintptr
setSysColorsTemp uintptr
setSystemMenu uintptr
setSystemTimer uintptr
setTaskmanWindow uintptr
setWindowStationUser uintptr
tileChildWindows uintptr
user32InitializeImmEntryTable uintptr
userRealizePalette uintptr
userRegisterWowHandlers uintptr
)
func init() {
// Library
libuser32 = doLoadLibrary("user32.dll")
// Functions
activateKeyboardLayout = doGetProcAddress(libuser32, "ActivateKeyboardLayout")
adjustWindowRect = doGetProcAddress(libuser32, "AdjustWindowRect")
adjustWindowRectEx = doGetProcAddress(libuser32, "AdjustWindowRectEx")
allowSetForegroundWindow = doGetProcAddress(libuser32, "AllowSetForegroundWindow")
animateWindow = doGetProcAddress(libuser32, "AnimateWindow")
anyPopup = doGetProcAddress(libuser32, "AnyPopup")
appendMenu = doGetProcAddress(libuser32, "AppendMenuW")
arrangeIconicWindows = doGetProcAddress(libuser32, "ArrangeIconicWindows")
attachThreadInput = doGetProcAddress(libuser32, "AttachThreadInput")
beginDeferWindowPos = doGetProcAddress(libuser32, "BeginDeferWindowPos")
beginPaint = doGetProcAddress(libuser32, "BeginPaint")
blockInput = doGetProcAddress(libuser32, "BlockInput")
bringWindowToTop = doGetProcAddress(libuser32, "BringWindowToTop")
broadcastSystemMessageEx = doGetProcAddress(libuser32, "BroadcastSystemMessageExW")
broadcastSystemMessage = doGetProcAddress(libuser32, "BroadcastSystemMessageW")
callMsgFilter = doGetProcAddress(libuser32, "CallMsgFilterW")
callNextHookEx = doGetProcAddress(libuser32, "CallNextHookEx")
callWindowProc = doGetProcAddress(libuser32, "CallWindowProcW")
cascadeWindows = doGetProcAddress(libuser32, "CascadeWindows")
changeClipboardChain = doGetProcAddress(libuser32, "ChangeClipboardChain")
changeDisplaySettingsEx = doGetProcAddress(libuser32, "ChangeDisplaySettingsExW")
changeDisplaySettings = doGetProcAddress(libuser32, "ChangeDisplaySettingsW")
changeMenu = doGetProcAddress(libuser32, "ChangeMenuW")
charLowerBuff = doGetProcAddress(libuser32, "CharLowerBuffW")
charLower = doGetProcAddress(libuser32, "CharLowerW")
charNextExA = doGetProcAddress(libuser32, "CharNextExA")
charNext = doGetProcAddress(libuser32, "CharNextW")
charPrevExA = doGetProcAddress(libuser32, "CharPrevExA")
charPrev = doGetProcAddress(libuser32, "CharPrevW")
charToOemBuff = doGetProcAddress(libuser32, "CharToOemBuffW")
charToOem = doGetProcAddress(libuser32, "CharToOemW")
charUpperBuff = doGetProcAddress(libuser32, "CharUpperBuffW")
charUpper = doGetProcAddress(libuser32, "CharUpperW")
checkDlgButton = doGetProcAddress(libuser32, "CheckDlgButton")
checkMenuItem = doGetProcAddress(libuser32, "CheckMenuItem")
checkMenuRadioItem = doGetProcAddress(libuser32, "CheckMenuRadioItem")
checkRadioButton = doGetProcAddress(libuser32, "CheckRadioButton")
childWindowFromPoint = doGetProcAddress(libuser32, "ChildWindowFromPoint")
childWindowFromPointEx = doGetProcAddress(libuser32, "ChildWindowFromPointEx")
clientToScreen = doGetProcAddress(libuser32, "ClientToScreen")
clipCursor = doGetProcAddress(libuser32, "ClipCursor")
closeClipboard = doGetProcAddress(libuser32, "CloseClipboard")
closeDesktop = doGetProcAddress(libuser32, "CloseDesktop")
closeGestureInfoHandle = doGetProcAddress(libuser32, "CloseGestureInfoHandle")
closeTouchInputHandle = doGetProcAddress(libuser32, "CloseTouchInputHandle")
closeWindow = doGetProcAddress(libuser32, "CloseWindow")
closeWindowStation = doGetProcAddress(libuser32, "CloseWindowStation")
copyAcceleratorTable = doGetProcAddress(libuser32, "CopyAcceleratorTableW")
copyIcon = doGetProcAddress(libuser32, "CopyIcon")
copyImage = doGetProcAddress(libuser32, "CopyImage")
copyRect = doGetProcAddress(libuser32, "CopyRect")
countClipboardFormats = doGetProcAddress(libuser32, "CountClipboardFormats")
createAcceleratorTable = doGetProcAddress(libuser32, "CreateAcceleratorTableW")
createCaret = doGetProcAddress(libuser32, "CreateCaret")
createCursor = doGetProcAddress(libuser32, "CreateCursor")
createDesktop = doGetProcAddress(libuser32, "CreateDesktopW")
createDialogIndirectParam = doGetProcAddress(libuser32, "CreateDialogIndirectParamW")
createDialogParam = doGetProcAddress(libuser32, "CreateDialogParamW")
createIcon = doGetProcAddress(libuser32, "CreateIcon")
createIconFromResource = doGetProcAddress(libuser32, "CreateIconFromResource")
createIconFromResourceEx = doGetProcAddress(libuser32, "CreateIconFromResourceEx")
createIconIndirect = doGetProcAddress(libuser32, "CreateIconIndirect")
createMDIWindow = doGetProcAddress(libuser32, "CreateMDIWindowW")
createMenu = doGetProcAddress(libuser32, "CreateMenu")
createPopupMenu = doGetProcAddress(libuser32, "CreatePopupMenu")
createWindowEx = doGetProcAddress(libuser32, "CreateWindowExW")
createWindowStation = doGetProcAddress(libuser32, "CreateWindowStationW")
ddeAbandonTransaction = doGetProcAddress(libuser32, "DdeAbandonTransaction")
ddeAccessData = doGetProcAddress(libuser32, "DdeAccessData")
ddeAddData = doGetProcAddress(libuser32, "DdeAddData")
ddeClientTransaction = doGetProcAddress(libuser32, "DdeClientTransaction")
ddeCmpStringHandles = doGetProcAddress(libuser32, "DdeCmpStringHandles")
ddeConnect = doGetProcAddress(libuser32, "DdeConnect")
ddeConnectList = doGetProcAddress(libuser32, "DdeConnectList")
ddeCreateDataHandle = doGetProcAddress(libuser32, "DdeCreateDataHandle")
ddeCreateStringHandle = doGetProcAddress(libuser32, "DdeCreateStringHandleW")
ddeDisconnect = doGetProcAddress(libuser32, "DdeDisconnect")
ddeDisconnectList = doGetProcAddress(libuser32, "DdeDisconnectList")
ddeEnableCallback = doGetProcAddress(libuser32, "DdeEnableCallback")
ddeFreeDataHandle = doGetProcAddress(libuser32, "DdeFreeDataHandle")
ddeFreeStringHandle = doGetProcAddress(libuser32, "DdeFreeStringHandle")
ddeGetData = doGetProcAddress(libuser32, "DdeGetData")
ddeGetLastError = doGetProcAddress(libuser32, "DdeGetLastError")
ddeImpersonateClient = doGetProcAddress(libuser32, "DdeImpersonateClient")
ddeInitialize = doGetProcAddress(libuser32, "DdeInitializeW")
ddeKeepStringHandle = doGetProcAddress(libuser32, "DdeKeepStringHandle")
ddeNameService = doGetProcAddress(libuser32, "DdeNameService")
ddePostAdvise = doGetProcAddress(libuser32, "DdePostAdvise")
ddeQueryConvInfo = doGetProcAddress(libuser32, "DdeQueryConvInfo")
ddeQueryNextServer = doGetProcAddress(libuser32, "DdeQueryNextServer")
ddeQueryString = doGetProcAddress(libuser32, "DdeQueryStringW")
ddeReconnect = doGetProcAddress(libuser32, "DdeReconnect")
ddeSetQualityOfService = doGetProcAddress(libuser32, "DdeSetQualityOfService")
ddeSetUserHandle = doGetProcAddress(libuser32, "DdeSetUserHandle")
ddeUnaccessData = doGetProcAddress(libuser32, "DdeUnaccessData")
ddeUninitialize = doGetProcAddress(libuser32, "DdeUninitialize")
defDlgProc = doGetProcAddress(libuser32, "DefDlgProcW")
defFrameProc = doGetProcAddress(libuser32, "DefFrameProcW")
defMDIChildProc = doGetProcAddress(libuser32, "DefMDIChildProcW")
defRawInputProc = doGetProcAddress(libuser32, "DefRawInputProc")
defWindowProc = doGetProcAddress(libuser32, "DefWindowProcW")
deferWindowPos = doGetProcAddress(libuser32, "DeferWindowPos")
deleteMenu = doGetProcAddress(libuser32, "DeleteMenu")
deregisterShellHookWindow = doGetProcAddress(libuser32, "DeregisterShellHookWindow")
destroyAcceleratorTable = doGetProcAddress(libuser32, "DestroyAcceleratorTable")
destroyCaret = doGetProcAddress(libuser32, "DestroyCaret")
destroyCursor = doGetProcAddress(libuser32, "DestroyCursor")
destroyIcon = doGetProcAddress(libuser32, "DestroyIcon")
destroyMenu = doGetProcAddress(libuser32, "DestroyMenu")
destroyWindow = doGetProcAddress(libuser32, "DestroyWindow")
dialogBoxIndirectParam = doGetProcAddress(libuser32, "DialogBoxIndirectParamW")
dialogBoxParam = doGetProcAddress(libuser32, "DialogBoxParamW")
disableProcessWindowsGhosting = doGetProcAddress(libuser32, "DisableProcessWindowsGhosting")
dispatchMessage = doGetProcAddress(libuser32, "DispatchMessageW")
dlgDirListComboBox = doGetProcAddress(libuser32, "DlgDirListComboBoxW")
dlgDirList = doGetProcAddress(libuser32, "DlgDirListW")
dlgDirSelectComboBoxEx = doGetProcAddress(libuser32, "DlgDirSelectComboBoxExW")
dlgDirSelectEx = doGetProcAddress(libuser32, "DlgDirSelectExW")
dragDetect = doGetProcAddress(libuser32, "DragDetect")
dragObject = doGetProcAddress(libuser32, "DragObject")
drawAnimatedRects = doGetProcAddress(libuser32, "DrawAnimatedRects")
drawCaption = doGetProcAddress(libuser32, "DrawCaption")
drawEdge = doGetProcAddress(libuser32, "DrawEdge")
drawFocusRect = doGetProcAddress(libuser32, "DrawFocusRect")
drawFrameControl = doGetProcAddress(libuser32, "DrawFrameControl")
drawIcon = doGetProcAddress(libuser32, "DrawIcon")
drawIconEx = doGetProcAddress(libuser32, "DrawIconEx")
drawMenuBar = doGetProcAddress(libuser32, "DrawMenuBar")
drawState = doGetProcAddress(libuser32, "DrawStateW")
drawTextEx = doGetProcAddress(libuser32, "DrawTextExW")
drawText = doGetProcAddress(libuser32, "DrawTextW")
emptyClipboard = doGetProcAddress(libuser32, "EmptyClipboard")
enableMenuItem = doGetProcAddress(libuser32, "EnableMenuItem")
enableScrollBar = doGetProcAddress(libuser32, "EnableScrollBar")
enableWindow = doGetProcAddress(libuser32, "EnableWindow")
endDeferWindowPos = doGetProcAddress(libuser32, "EndDeferWindowPos")
endDialog = doGetProcAddress(libuser32, "EndDialog")
endMenu = doGetProcAddress(libuser32, "EndMenu")
endPaint = doGetProcAddress(libuser32, "EndPaint")
endTask = doGetProcAddress(libuser32, "EndTask")
enumChildWindows = doGetProcAddress(libuser32, "EnumChildWindows")
enumClipboardFormats = doGetProcAddress(libuser32, "EnumClipboardFormats")
enumDesktopWindows = doGetProcAddress(libuser32, "EnumDesktopWindows")
enumDesktops = doGetProcAddress(libuser32, "EnumDesktopsW")
enumDisplayDevices = doGetProcAddress(libuser32, "EnumDisplayDevicesW")
enumDisplayMonitors = doGetProcAddress(libuser32, "EnumDisplayMonitors")
enumDisplaySettingsEx = doGetProcAddress(libuser32, "EnumDisplaySettingsExW")
enumDisplaySettings = doGetProcAddress(libuser32, "EnumDisplaySettingsW")
enumPropsEx = doGetProcAddress(libuser32, "EnumPropsExW")
enumProps = doGetProcAddress(libuser32, "EnumPropsW")
enumThreadWindows = doGetProcAddress(libuser32, "EnumThreadWindows")
enumWindowStations = doGetProcAddress(libuser32, "EnumWindowStationsW")
enumWindows = doGetProcAddress(libuser32, "EnumWindows")
equalRect = doGetProcAddress(libuser32, "EqualRect")
excludeUpdateRgn = doGetProcAddress(libuser32, "ExcludeUpdateRgn")
exitWindowsEx = doGetProcAddress(libuser32, "ExitWindowsEx")
fillRect = doGetProcAddress(libuser32, "FillRect")
findWindowEx = doGetProcAddress(libuser32, "FindWindowExW")
findWindow = doGetProcAddress(libuser32, "FindWindowW")
flashWindow = doGetProcAddress(libuser32, "FlashWindow")
flashWindowEx = doGetProcAddress(libuser32, "FlashWindowEx")
frameRect = doGetProcAddress(libuser32, "FrameRect")
freeDDElParam = doGetProcAddress(libuser32, "FreeDDElParam")
getActiveWindow = doGetProcAddress(libuser32, "GetActiveWindow")
getAltTabInfo = doGetProcAddress(libuser32, "GetAltTabInfoW")
getAncestor = doGetProcAddress(libuser32, "GetAncestor")
getAsyncKeyState = doGetProcAddress(libuser32, "GetAsyncKeyState")
getCapture = doGetProcAddress(libuser32, "GetCapture")
getCaretBlinkTime = doGetProcAddress(libuser32, "GetCaretBlinkTime")
getCaretPos = doGetProcAddress(libuser32, "GetCaretPos")
getClassInfoEx = doGetProcAddress(libuser32, "GetClassInfoExW")
getClassInfo = doGetProcAddress(libuser32, "GetClassInfoW")
getClassLongPtr = doGetProcAddress(libuser32, "GetClassLongPtrW")
getClassLong = doGetProcAddress(libuser32, "GetClassLongW")
getClassName = doGetProcAddress(libuser32, "GetClassNameW")
getClassWord = doGetProcAddress(libuser32, "GetClassWord")
getClientRect = doGetProcAddress(libuser32, "GetClientRect")
getClipCursor = doGetProcAddress(libuser32, "GetClipCursor")
getClipboardData = doGetProcAddress(libuser32, "GetClipboardData")
getClipboardFormatName = doGetProcAddress(libuser32, "GetClipboardFormatNameW")
getClipboardOwner = doGetProcAddress(libuser32, "GetClipboardOwner")
getClipboardSequenceNumber = doGetProcAddress(libuser32, "GetClipboardSequenceNumber")
getClipboardViewer = doGetProcAddress(libuser32, "GetClipboardViewer")
getComboBoxInfo = doGetProcAddress(libuser32, "GetComboBoxInfo")
getCursor = doGetProcAddress(libuser32, "GetCursor")
getCursorInfo = doGetProcAddress(libuser32, "GetCursorInfo")
getCursorPos = doGetProcAddress(libuser32, "GetCursorPos")
getDC = doGetProcAddress(libuser32, "GetDC")
getDCEx = doGetProcAddress(libuser32, "GetDCEx")
getDesktopWindow = doGetProcAddress(libuser32, "GetDesktopWindow")
getDialogBaseUnits = doGetProcAddress(libuser32, "GetDialogBaseUnits")
getDlgCtrlID = doGetProcAddress(libuser32, "GetDlgCtrlID")
getDlgItem = doGetProcAddress(libuser32, "GetDlgItem")
getDlgItemInt = doGetProcAddress(libuser32, "GetDlgItemInt")
getDlgItemText = doGetProcAddress(libuser32, "GetDlgItemTextW")
getDoubleClickTime = doGetProcAddress(libuser32, "GetDoubleClickTime")
getFocus = doGetProcAddress(libuser32, "GetFocus")
getForegroundWindow = doGetProcAddress(libuser32, "GetForegroundWindow")
getGUIThreadInfo = doGetProcAddress(libuser32, "GetGUIThreadInfo")
getGestureConfig = doGetProcAddress(libuser32, "GetGestureConfig")
getGestureExtraArgs = doGetProcAddress(libuser32, "GetGestureExtraArgs")
getGestureInfo = doGetProcAddress(libuser32, "GetGestureInfo")
getGuiResources = doGetProcAddress(libuser32, "GetGuiResources")
getIconInfo = doGetProcAddress(libuser32, "GetIconInfo")
getInputState = doGetProcAddress(libuser32, "GetInputState")
getKBCodePage = doGetProcAddress(libuser32, "GetKBCodePage")
getKeyNameText = doGetProcAddress(libuser32, "GetKeyNameTextW")
getKeyState = doGetProcAddress(libuser32, "GetKeyState")
getKeyboardLayout = doGetProcAddress(libuser32, "GetKeyboardLayout")
getKeyboardLayoutList = doGetProcAddress(libuser32, "GetKeyboardLayoutList")
getKeyboardLayoutName = doGetProcAddress(libuser32, "GetKeyboardLayoutNameW")
getKeyboardState = doGetProcAddress(libuser32, "GetKeyboardState")
getKeyboardType = doGetProcAddress(libuser32, "GetKeyboardType")
getLastActivePopup = doGetProcAddress(libuser32, "GetLastActivePopup")
getLastInputInfo = doGetProcAddress(libuser32, "GetLastInputInfo")
getLayeredWindowAttributes = doGetProcAddress(libuser32, "GetLayeredWindowAttributes")
getListBoxInfo = doGetProcAddress(libuser32, "GetListBoxInfo")
getMenu = doGetProcAddress(libuser32, "GetMenu")
getMenuBarInfo = doGetProcAddress(libuser32, "GetMenuBarInfo")
getMenuCheckMarkDimensions = doGetProcAddress(libuser32, "GetMenuCheckMarkDimensions")
getMenuContextHelpId = doGetProcAddress(libuser32, "GetMenuContextHelpId")
getMenuDefaultItem = doGetProcAddress(libuser32, "GetMenuDefaultItem")
getMenuInfo = doGetProcAddress(libuser32, "GetMenuInfo")
getMenuItemCount = doGetProcAddress(libuser32, "GetMenuItemCount")
getMenuItemID = doGetProcAddress(libuser32, "GetMenuItemID")
getMenuItemInfo = doGetProcAddress(libuser32, "GetMenuItemInfoW")
getMenuItemRect = doGetProcAddress(libuser32, "GetMenuItemRect")
getMenuState = doGetProcAddress(libuser32, "GetMenuState")
getMenuString = doGetProcAddress(libuser32, "GetMenuStringW")
getMessageExtraInfo = doGetProcAddress(libuser32, "GetMessageExtraInfo")
getMessagePos = doGetProcAddress(libuser32, "GetMessagePos")
getMessageTime = doGetProcAddress(libuser32, "GetMessageTime")
getMessage = doGetProcAddress(libuser32, "GetMessageW")
getMonitorInfo = doGetProcAddress(libuser32, "GetMonitorInfoW")
getMouseMovePointsEx = doGetProcAddress(libuser32, "GetMouseMovePointsEx")
getNextDlgGroupItem = doGetProcAddress(libuser32, "GetNextDlgGroupItem")
getNextDlgTabItem = doGetProcAddress(libuser32, "GetNextDlgTabItem")
getOpenClipboardWindow = doGetProcAddress(libuser32, "GetOpenClipboardWindow")
getParent = doGetProcAddress(libuser32, "GetParent")
getPriorityClipboardFormat = doGetProcAddress(libuser32, "GetPriorityClipboardFormat")
getProcessDefaultLayout = doGetProcAddress(libuser32, "GetProcessDefaultLayout")
getProcessWindowStation = doGetProcAddress(libuser32, "GetProcessWindowStation")
getProp = doGetProcAddress(libuser32, "GetPropW")
getQueueStatus = doGetProcAddress(libuser32, "GetQueueStatus")
getRawInputBuffer = doGetProcAddress(libuser32, "GetRawInputBuffer")
getRawInputData = doGetProcAddress(libuser32, "GetRawInputData")
getRawInputDeviceInfo = doGetProcAddress(libuser32, "GetRawInputDeviceInfoW")
getRawInputDeviceList = doGetProcAddress(libuser32, "GetRawInputDeviceList")
getRegisteredRawInputDevices = doGetProcAddress(libuser32, "GetRegisteredRawInputDevices")
getScrollBarInfo = doGetProcAddress(libuser32, "GetScrollBarInfo")
getScrollInfo = doGetProcAddress(libuser32, "GetScrollInfo")
getScrollPos = doGetProcAddress(libuser32, "GetScrollPos")
getScrollRange = doGetProcAddress(libuser32, "GetScrollRange")
getShellWindow = doGetProcAddress(libuser32, "GetShellWindow")
getSubMenu = doGetProcAddress(libuser32, "GetSubMenu")
getSysColor = doGetProcAddress(libuser32, "GetSysColor")
getSysColorBrush = doGetProcAddress(libuser32, "GetSysColorBrush")
getSystemMenu = doGetProcAddress(libuser32, "GetSystemMenu")
getSystemMetrics = doGetProcAddress(libuser32, "GetSystemMetrics")
getTabbedTextExtent = doGetProcAddress(libuser32, "GetTabbedTextExtentW")
getThreadDesktop = doGetProcAddress(libuser32, "GetThreadDesktop")
getTitleBarInfo = doGetProcAddress(libuser32, "GetTitleBarInfo")
getTopWindow = doGetProcAddress(libuser32, "GetTopWindow")
getTouchInputInfo = doGetProcAddress(libuser32, "GetTouchInputInfo")
getUpdateRect = doGetProcAddress(libuser32, "GetUpdateRect")
getUpdateRgn = doGetProcAddress(libuser32, "GetUpdateRgn")
getUserObjectInformation = doGetProcAddress(libuser32, "GetUserObjectInformationW")
getUserObjectSecurity = doGetProcAddress(libuser32, "GetUserObjectSecurity")
getWindow = doGetProcAddress(libuser32, "GetWindow")
getWindowContextHelpId = doGetProcAddress(libuser32, "GetWindowContextHelpId")
getWindowDC = doGetProcAddress(libuser32, "GetWindowDC")
getWindowInfo = doGetProcAddress(libuser32, "GetWindowInfo")
getWindowLongPtr = doGetProcAddress(libuser32, "GetWindowLongPtrW")
getWindowLong = doGetProcAddress(libuser32, "GetWindowLongW")
getWindowModuleFileName = doGetProcAddress(libuser32, "GetWindowModuleFileNameW")
getWindowPlacement = doGetProcAddress(libuser32, "GetWindowPlacement")
getWindowRect = doGetProcAddress(libuser32, "GetWindowRect")
getWindowRgn = doGetProcAddress(libuser32, "GetWindowRgn")
getWindowRgnBox = doGetProcAddress(libuser32, "GetWindowRgnBox")
getWindowTextLength = doGetProcAddress(libuser32, "GetWindowTextLengthW")
getWindowText = doGetProcAddress(libuser32, "GetWindowTextW")
getWindowThreadProcessId = doGetProcAddress(libuser32, "GetWindowThreadProcessId")
getWindowWord = doGetProcAddress(libuser32, "GetWindowWord")
grayString = doGetProcAddress(libuser32, "GrayStringW")
hideCaret = doGetProcAddress(libuser32, "HideCaret")
hiliteMenuItem = doGetProcAddress(libuser32, "HiliteMenuItem")
iMPGetIME = doGetProcAddress(libuser32, "IMPGetIMEW")
iMPQueryIME = doGetProcAddress(libuser32, "IMPQueryIMEW")
iMPSetIME = doGetProcAddress(libuser32, "IMPSetIMEW")
impersonateDdeClientWindow = doGetProcAddress(libuser32, "ImpersonateDdeClientWindow")
inSendMessage = doGetProcAddress(libuser32, "InSendMessage")
inSendMessageEx = doGetProcAddress(libuser32, "InSendMessageEx")
inflateRect = doGetProcAddress(libuser32, "InflateRect")
insertMenuItem = doGetProcAddress(libuser32, "InsertMenuItemW")
insertMenu = doGetProcAddress(libuser32, "InsertMenuW")
internalGetWindowText = doGetProcAddress(libuser32, "InternalGetWindowText")
intersectRect = doGetProcAddress(libuser32, "IntersectRect")
invalidateRect = doGetProcAddress(libuser32, "InvalidateRect")
invalidateRgn = doGetProcAddress(libuser32, "InvalidateRgn")
invertRect = doGetProcAddress(libuser32, "InvertRect")
isCharAlphaNumeric = doGetProcAddress(libuser32, "IsCharAlphaNumericW")
isCharAlpha = doGetProcAddress(libuser32, "IsCharAlphaW")
isCharLower = doGetProcAddress(libuser32, "IsCharLowerW")
isCharUpper = doGetProcAddress(libuser32, "IsCharUpperW")
isChild = doGetProcAddress(libuser32, "IsChild")
isClipboardFormatAvailable = doGetProcAddress(libuser32, "IsClipboardFormatAvailable")
isDialogMessage = doGetProcAddress(libuser32, "IsDialogMessageW")
isDlgButtonChecked = doGetProcAddress(libuser32, "IsDlgButtonChecked")
isGUIThread = doGetProcAddress(libuser32, "IsGUIThread")
isHungAppWindow = doGetProcAddress(libuser32, "IsHungAppWindow")
isIconic = doGetProcAddress(libuser32, "IsIconic")
isMenu = doGetProcAddress(libuser32, "IsMenu")
isRectEmpty = doGetProcAddress(libuser32, "IsRectEmpty")
isTouchWindow = doGetProcAddress(libuser32, "IsTouchWindow")
isWinEventHookInstalled = doGetProcAddress(libuser32, "IsWinEventHookInstalled")
isWindow = doGetProcAddress(libuser32, "IsWindow")
isWindowEnabled = doGetProcAddress(libuser32, "IsWindowEnabled")
isWindowUnicode = doGetProcAddress(libuser32, "IsWindowUnicode")
isWindowVisible = doGetProcAddress(libuser32, "IsWindowVisible")
isWow64Message = doGetProcAddress(libuser32, "IsWow64Message")
isZoomed = doGetProcAddress(libuser32, "IsZoomed")
killTimer = doGetProcAddress(libuser32, "KillTimer")
loadAccelerators = doGetProcAddress(libuser32, "LoadAcceleratorsW")
loadBitmap = doGetProcAddress(libuser32, "LoadBitmapW")
loadCursorFromFile = doGetProcAddress(libuser32, "LoadCursorFromFileW")
loadCursor = doGetProcAddress(libuser32, "LoadCursorW")
loadIcon = doGetProcAddress(libuser32, "LoadIconW")
loadImage = doGetProcAddress(libuser32, "LoadImageW")
loadKeyboardLayout = doGetProcAddress(libuser32, "LoadKeyboardLayoutW")
loadMenuIndirect = doGetProcAddress(libuser32, "LoadMenuIndirectW")
loadMenu = doGetProcAddress(libuser32, "LoadMenuW")
loadString = doGetProcAddress(libuser32, "LoadStringW")
lockSetForegroundWindow = doGetProcAddress(libuser32, "LockSetForegroundWindow")
lockWindowUpdate = doGetProcAddress(libuser32, "LockWindowUpdate")
lockWorkStation = doGetProcAddress(libuser32, "LockWorkStation")
lookupIconIdFromDirectory = doGetProcAddress(libuser32, "LookupIconIdFromDirectory")
lookupIconIdFromDirectoryEx = doGetProcAddress(libuser32, "LookupIconIdFromDirectoryEx")
mapDialogRect = doGetProcAddress(libuser32, "MapDialogRect")
mapVirtualKeyEx = doGetProcAddress(libuser32, "MapVirtualKeyExW")
mapVirtualKey = doGetProcAddress(libuser32, "MapVirtualKeyW")
mapWindowPoints = doGetProcAddress(libuser32, "MapWindowPoints")
menuItemFromPoint = doGetProcAddress(libuser32, "MenuItemFromPoint")
messageBeep = doGetProcAddress(libuser32, "MessageBeep")
messageBoxEx = doGetProcAddress(libuser32, "MessageBoxExW")
messageBoxIndirect = doGetProcAddress(libuser32, "MessageBoxIndirectW")
messageBox = doGetProcAddress(libuser32, "MessageBoxW")
modifyMenu = doGetProcAddress(libuser32, "ModifyMenuW")
monitorFromPoint = doGetProcAddress(libuser32, "MonitorFromPoint")
monitorFromRect = doGetProcAddress(libuser32, "MonitorFromRect")
monitorFromWindow = doGetProcAddress(libuser32, "MonitorFromWindow")
moveWindow = doGetProcAddress(libuser32, "MoveWindow")
msgWaitForMultipleObjects = doGetProcAddress(libuser32, "MsgWaitForMultipleObjects")
msgWaitForMultipleObjectsEx = doGetProcAddress(libuser32, "MsgWaitForMultipleObjectsEx")
notifyWinEvent = doGetProcAddress(libuser32, "NotifyWinEvent")
oemKeyScan = doGetProcAddress(libuser32, "OemKeyScan")
oemToCharBuff = doGetProcAddress(libuser32, "OemToCharBuffW")
oemToChar = doGetProcAddress(libuser32, "OemToCharW")
offsetRect = doGetProcAddress(libuser32, "OffsetRect")
openClipboard = doGetProcAddress(libuser32, "OpenClipboard")
openDesktop = doGetProcAddress(libuser32, "OpenDesktopW")
openIcon = doGetProcAddress(libuser32, "OpenIcon")
openInputDesktop = doGetProcAddress(libuser32, "OpenInputDesktop")
openWindowStation = doGetProcAddress(libuser32, "OpenWindowStationW")
packDDElParam = doGetProcAddress(libuser32, "PackDDElParam")
paintDesktop = doGetProcAddress(libuser32, "PaintDesktop")
peekMessage = doGetProcAddress(libuser32, "PeekMessageW")
postMessage = doGetProcAddress(libuser32, "PostMessageW")
postQuitMessage = doGetProcAddress(libuser32, "PostQuitMessage")
postThreadMessage = doGetProcAddress(libuser32, "PostThreadMessageW")
printWindow = doGetProcAddress(libuser32, "PrintWindow")
privateExtractIcons = doGetProcAddress(libuser32, "PrivateExtractIconsW")
ptInRect = doGetProcAddress(libuser32, "PtInRect")
realChildWindowFromPoint = doGetProcAddress(libuser32, "RealChildWindowFromPoint")
realGetWindowClass = doGetProcAddress(libuser32, "RealGetWindowClassW")
redrawWindow = doGetProcAddress(libuser32, "RedrawWindow")
registerClassEx = doGetProcAddress(libuser32, "RegisterClassExW")
registerClass = doGetProcAddress(libuser32, "RegisterClassW")
registerClipboardFormat = doGetProcAddress(libuser32, "RegisterClipboardFormatW")
registerDeviceNotification = doGetProcAddress(libuser32, "RegisterDeviceNotificationW")
registerHotKey = doGetProcAddress(libuser32, "RegisterHotKey")
registerPowerSettingNotification = doGetProcAddress(libuser32, "RegisterPowerSettingNotification")
registerRawInputDevices = doGetProcAddress(libuser32, "RegisterRawInputDevices")
registerShellHookWindow = doGetProcAddress(libuser32, "RegisterShellHookWindow")
registerTouchWindow = doGetProcAddress(libuser32, "RegisterTouchWindow")
registerWindowMessage = doGetProcAddress(libuser32, "RegisterWindowMessageW")
releaseCapture = doGetProcAddress(libuser32, "ReleaseCapture")
releaseDC = doGetProcAddress(libuser32, "ReleaseDC")
removeMenu = doGetProcAddress(libuser32, "RemoveMenu")
removeProp = doGetProcAddress(libuser32, "RemovePropW")
replyMessage = doGetProcAddress(libuser32, "ReplyMessage")
reuseDDElParam = doGetProcAddress(libuser32, "ReuseDDElParam")
screenToClient = doGetProcAddress(libuser32, "ScreenToClient")
scrollDC = doGetProcAddress(libuser32, "ScrollDC")
scrollWindow = doGetProcAddress(libuser32, "ScrollWindow")
scrollWindowEx = doGetProcAddress(libuser32, "ScrollWindowEx")
sendDlgItemMessage = doGetProcAddress(libuser32, "SendDlgItemMessageW")
sendIMEMessageEx = doGetProcAddress(libuser32, "SendIMEMessageExW")
sendInput = doGetProcAddress(libuser32, "SendInput")
sendMessageCallback = doGetProcAddress(libuser32, "SendMessageCallbackW")
sendMessageTimeout = doGetProcAddress(libuser32, "SendMessageTimeoutW")
sendMessage = doGetProcAddress(libuser32, "SendMessageW")
sendNotifyMessage = doGetProcAddress(libuser32, "SendNotifyMessageW")
setActiveWindow = doGetProcAddress(libuser32, "SetActiveWindow")
setCapture = doGetProcAddress(libuser32, "SetCapture")
setCaretBlinkTime = doGetProcAddress(libuser32, "SetCaretBlinkTime")
setCaretPos = doGetProcAddress(libuser32, "SetCaretPos")
setClassLongPtr = doGetProcAddress(libuser32, "SetClassLongPtrW")
setClassLong = doGetProcAddress(libuser32, "SetClassLongW")
setClassWord = doGetProcAddress(libuser32, "SetClassWord")
setClipboardData = doGetProcAddress(libuser32, "SetClipboardData")
setClipboardViewer = doGetProcAddress(libuser32, "SetClipboardViewer")
setCursor = doGetProcAddress(libuser32, "SetCursor")
setCursorPos = doGetProcAddress(libuser32, "SetCursorPos")
setDebugErrorLevel = doGetProcAddress(libuser32, "SetDebugErrorLevel")
setDlgItemInt = doGetProcAddress(libuser32, "SetDlgItemInt")
setDlgItemText = doGetProcAddress(libuser32, "SetDlgItemTextW")
setDoubleClickTime = doGetProcAddress(libuser32, "SetDoubleClickTime")
setFocus = doGetProcAddress(libuser32, "SetFocus")
setForegroundWindow = doGetProcAddress(libuser32, "SetForegroundWindow")
setGestureConfig = doGetProcAddress(libuser32, "SetGestureConfig")
setKeyboardState = doGetProcAddress(libuser32, "SetKeyboardState")
setLastErrorEx = doGetProcAddress(libuser32, "SetLastErrorEx")
setLayeredWindowAttributes = doGetProcAddress(libuser32, "SetLayeredWindowAttributes")
setMenu = doGetProcAddress(libuser32, "SetMenu")
setMenuContextHelpId = doGetProcAddress(libuser32, "SetMenuContextHelpId")
setMenuDefaultItem = doGetProcAddress(libuser32, "SetMenuDefaultItem")
setMenuInfo = doGetProcAddress(libuser32, "SetMenuInfo")
setMenuItemBitmaps = doGetProcAddress(libuser32, "SetMenuItemBitmaps")
setMenuItemInfo = doGetProcAddress(libuser32, "SetMenuItemInfoW")
setMessageExtraInfo = doGetProcAddress(libuser32, "SetMessageExtraInfo")
setMessageQueue = doGetProcAddress(libuser32, "SetMessageQueue")
setParent = doGetProcAddress(libuser32, "SetParent")