• EnglishSpanishGermanFrenchPolishChinese (Traditional)


EnglishSpanishGermanFrenchPolishChinese (Traditional)

Operating systems, scripting, PowerShell and security

Operating systems, software development, scripting, PowerShell tips, network and security

Menú principal
  • Categorías
  • Cursos
  • Libro de PowerShell
  • Lo mejor
  • Lo último
  • Proyectos
  • Contactar
Ir al contenido

Información sobre el archivo DLL user32.dll

Comando de PowerShell para obtener el analisis del archivo DLL user32.dll

PowerShell
1
2
3
cd "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx86\x86"
 
.\dumpbin.exe /exports C:\Windows\System32\user32.dll

Resultado del análisis del archivo DLL user32.dll

PowerShell
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
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
Dump of file C:\Windows\System32\user32.dll
 
File Type: DLL
 
  Section contains the following exports for USER32.dll
 
    00000000 characteristics
    FA49A8AE time date stamp
        0.00 version
        1502 ordinal base
        1215 number of functions
        1001 number of names
 
    ordinal hint RVA      name
 
       1504    0 0002AF20 ActivateKeyboardLayout
       1505    1 0002B5F0 AddClipboardFormatListener
       1506    2 00031EB0 AddVisualIdentifier
       1507    3 0007CF30 AdjustWindowRect
       1508    4 00018970 AdjustWindowRectEx
       1509    5 0000B5E0 AdjustWindowRectExForDpi
       1510    6 00083800 AlignRects
       1511    7 0007CFA0 AllowForegroundActivation
       1512    8 0002A0E0 AllowSetForegroundWindow
       1513    9 00077EA0 AnimateWindow
       1514    A 00078B50 AnyPopup
       1515    B 00081200 AppendMenuA
       1516    C 00020FA0 AppendMenuW
       1517    D 00018DB0 AreDpiAwarenessContextsEqual
       1518    E 0007CFC0 ArrangeIconicWindows
       1519    F 00031EC0 AttachThreadInput
       1520   10 00028BC0 BeginDeferWindowPos
       1521   11 00031EE0 BeginPaint
       1522   12 00031EF0 BlockInput
       1523   13 0002F6A0 BringWindowToTop
       1524   14 00081250 BroadcastSystemMessage
       1525   15 00081250 BroadcastSystemMessageA
       1526   16 00081280 BroadcastSystemMessageExA
       1527   17 0007E3B0 BroadcastSystemMessageExW
       1528   18 0001F130 BroadcastSystemMessageW
       1529   19 00030FD0 BuildReasonArray
       1530   1A 00031F10 CalcMenuBar
       1531   1B 00031F20 CalculatePopupWindowPosition
       1532   1C 00079D90 CallMsgFilter
       1533   1D 00079D90 CallMsgFilterA
       1534   1E 0007F990 CallMsgFilterW
       1535   1F 000189E0 CallNextHookEx
       1536   20 0004D570 CallWindowProcA
       1537   21 000157B0 CallWindowProcW
       1538   22 00053990 CancelShutdown
       1539   23 0007CFE0 CascadeChildWindows
       1540   24 0006ED90 CascadeWindows
       1541   25 0007B190 ChangeClipboardChain
       1542   26 00079EA0 ChangeDisplaySettingsA
       1543   27 0002F6D0 ChangeDisplaySettingsExA
       1544   28 00025F20 ChangeDisplaySettingsExW
       1545   29 0007FA40 ChangeDisplaySettingsW
       1546   2A 0006F070 ChangeMenuA
       1547   2B 0006F110 ChangeMenuW
       1548   2C 00029BA0 ChangeWindowMessageFilter
       1549   2D 00031F40 ChangeWindowMessageFilterEx
       1555   2E 0002B470 CharLowerA
       1556   2F 0007B1B0 CharLowerBuffA
       1557   30 00030AF0 CharLowerBuffW
       1558   31 00030260 CharLowerW
       1559   32 00029B40 CharNextA
       1560   33 0007B1C0 CharNextExA
       1561   34 0002A3C0 CharNextW
       1562   35 00001E70 CharPrevA
       1563   36 0007B1D0 CharPrevExA
       1564   37 0007B1E0 CharPrevW
       1565   38 00027B80 CharToOemA
       1566   39 00072BD0 CharToOemBuffA
       1567   3A 00072C20 CharToOemBuffW
       1568   3B 00072C80 CharToOemW
       1569   3C 00028A90 CharUpperA
       1570   3D 0007B1F0 CharUpperBuffA
       1571   3E 00001170 CharUpperBuffW
       1572   3F 00026210 CharUpperW
       1573   40 0002B640 CheckBannedOneCoreTransformApi
       1574   41 00023090 CheckDBCSEnabledExt
       1575   42 00001B40 CheckDlgButton
       1576   43 00020E00 CheckMenuItem
       1577   44 000015C0 CheckMenuRadioItem
       1578   45 00031F50 CheckProcessForClipboardAccess
       1579   46 00031F60 CheckProcessSession
       1580   47 00001180 CheckRadioButton
       1581   48 00031F70 CheckWindowThreadDesktop
       1582   49 0007D010 ChildWindowFromPoint
       1583   4A 00031F80 ChildWindowFromPointEx
       1584   4B 00049550 CliImmSetHotKey
       1585   4C 0001E750 ClientThreadSetup
       1586   4D 00016E40 ClientToScreen
       1587   4E 00031FA0 ClipCursor
       1588   4F 0002B0C0 CloseClipboard
       1589   50 00031FB0 CloseDesktop
       1590   51 0004C750 CloseGestureInfoHandle
       1591   52 0004EA40 CloseTouchInputHandle
       1592   53 0007D0B0 CloseWindow
       1593   54 00031FC0 CloseWindowStation
       1594   55 00025ED0 ConsoleControl
       1595   56 00032020 ControlMagnification
       1596   57 0004DE90 CopyAcceleratorTableA
       1597   58 00032030 CopyAcceleratorTableW
       1598   59 00025B40 CopyIcon
       1599   5A 00009680 CopyImage
       1600   5B 00023D70 CopyRect
       1601   5C 0002A3A0 CountClipboardFormats
       1602   5D 0004DF10 CreateAcceleratorTableA
       1603   5E 00032040 CreateAcceleratorTableW
       1604   5F 0002A7E0 CreateCaret
       1605   60 0002FA80 CreateCursor
       1606   61 00032060 CreateDCompositionHwndTarget
       1607   62 0007D0F0 CreateDesktopA
       1608   63 0007D130 CreateDesktopExA
       1609   64 0002A680 CreateDesktopExW
       1610   65 0002A640 CreateDesktopW
       1611   66 0004DF90 CreateDialogIndirectParamA
       1612   67 00002720 CreateDialogIndirectParamAorW
       1613   68 00001F40 CreateDialogIndirectParamW
       1614   69 0004DFC0 CreateDialogParamA
       1615   6A 00002130 CreateDialogParamW
       1616   6B 0004E0B0 CreateIcon
       1617   6C 0004E180 CreateIconFromResource
       1618   6D 00008720 CreateIconFromResourceEx
       1619   6E 0000CFC0 CreateIconIndirect
       1620   6F 0006EDC0 CreateMDIWindowA
       1621   70 0006EE40 CreateMDIWindowW
       1622   71 00030560 CreateMenu
       1623   72 0002B000 CreatePopupMenu
       1624   73 00073E90 CreateSyntheticPointerDevice
       1625   74 0007E450 CreateSystemThreads
       1626   75 0002A800 CreateWindowExA
       1627   76 00007710 CreateWindowExW
       1628   77 00005A40 CreateWindowInBand
       1629   78 00005D10 CreateWindowInBandEx
       1630   79 00078BA0 CreateWindowIndirect
       1631   7A 0007D2A0 CreateWindowStationA
       1632   7B 0001E150 CreateWindowStationW
       1633   7C 0001F060 CsrBroadcastSystemMessageExW
       1634   7D 0001E100 CtxInitUser32
       1635   7E 000790E0 DdeAbandonTransaction
       1636   7F 00066E20 DdeAccessData
       1637   80 00066ED0 DdeAddData
       1638   81 000791B0 DdeClientTransaction
       1639   82 00067950 DdeCmpStringHandles
       1640   83 00052FB0 DdeConnect
       1641   84 000530B0 DdeConnectList
       1642   85 00067040 DdeCreateDataHandle
       1643   86 00067970 DdeCreateStringHandleA
       1644   87 00029850 DdeCreateStringHandleW
       1645   88 00053380 DdeDisconnect
       1646   89 00053420 DdeDisconnectList
       1647   8A 0004B250 DdeEnableCallback
       1648   8B 00067190 DdeFreeDataHandle
       1649   8C 00067990 DdeFreeStringHandle
       1650   8D 00067200 DdeGetData
       1651   8E 000547E0 DdeGetLastError
       1652   8F 0002B670 DdeGetQualityOfService
       1653   90 00054830 DdeImpersonateClient
       1654   91 000548C0 DdeInitializeA
       1655   92 0001DAF0 DdeInitializeW
       1656   93 00067A60 DdeKeepStringHandle
       1657   94 00029550 DdeNameService
       1658   95 000797D0 DdePostAdvise
       1659   96 00079A80 DdeQueryConvInfo
       1660   97 00053530 DdeQueryNextServer
       1661   98 00067B20 DdeQueryStringA
       1662   99 00067B40 DdeQueryStringW
       1663   9A 00053680 DdeReconnect
       1664   9B 0002B670 DdeSetQualityOfService
       1665   9C 00079CA0 DdeSetUserHandle
       1666   9D 00067350 DdeUnaccessData
       1667   9E 000548E0 DdeUninitialize
       1668   9F          DefDlgProcA (forwarded to NTDLL.NtdllDialogWndProc_A)
       1669   A0          DefDlgProcW (forwarded to NTDLL.NtdllDialogWndProc_W)
       1670   A1 0006EEC0 DefFrameProcA
       1671   A2 0002E4B0 DefFrameProcW
       1672   A3 0006EEF0 DefMDIChildProcA
       1673   A4 0002CA20 DefMDIChildProcW
       1674   A5 0004D5A0 DefRawInputProc
       1675   A6          DefWindowProcA (forwarded to NTDLL.NtdllDefWindowProc_A)
       1676   A7          DefWindowProcW (forwarded to NTDLL.NtdllDefWindowProc_W)
       1677   A8 00026D00 DeferWindowPos
       1678   A9 0007D310 DeferWindowPosAndBand
       2503   AA 000320A0 DelegateInput
       1679   AB 000320B0 DeleteMenu
       1680   AC 0002B480 DeregisterShellHookWindow
       1681   AD 00026BC0 DestroyAcceleratorTable
       1682   AE 0002AF30 DestroyCaret
       1683   AF 00027970 DestroyCursor
       1684   B0 000320E0 DestroyDCompositionHwndTarget
       1685   B1 00027970 DestroyIcon
       1686   B2 000320F0 DestroyMenu
       1687   B3 00030F50 DestroyReasons
       1688   B4 00032100 DestroySyntheticPointerDevice
       1689   B5 00032110 DestroyWindow
       1690   B6 0004E1B0 DialogBoxIndirectParamA
       1691   B7 0002BA20 DialogBoxIndirectParamAorW
       1692   B8 0002B9F0 DialogBoxIndirectParamW
       1693   B9 0004E1E0 DialogBoxParamA
       1694   BA 0002B960 DialogBoxParamW
       1695   BB 0002B310 DisableProcessWindowsGhosting
       1696   BC 0002A050 DispatchMessageA
       1697   BD 00015370 DispatchMessageW
       1698   BE 000284E0 DisplayConfigGetDeviceInfo
       1699   BF 00082EE0 DisplayConfigSetDeviceInfo
       1700   C0 000539E0 DisplayExitWindowsWarnings
       1701   C1 0006C880 DlgDirListA
       1702   C2 000515F0 DlgDirListComboBoxA
       1703   C3 000516E0 DlgDirListComboBoxW
       1704   C4 0006C970 DlgDirListW
       1705   C5 00051740 DlgDirSelectComboBoxExA
       1706   C6 000517E0 DlgDirSelectComboBoxExW
       1707   C7 0006C9D0 DlgDirSelectExA
       1708   C8 0006CA80 DlgDirSelectExW
       1709   C9 00032130 DoSoundConnect
       1710   CA 00032140 DoSoundDisconnect
       1711   CB 00032160 DragDetect
       1712   CC 00032170 DragObject
       1713   CD 00032180 DrawAnimatedRects
       1714   CE 00080430 DrawCaption
       1715   CF 00079ED0 DrawCaptionTempA
       1716   D0 0007FA70 DrawCaptionTempW
       1717   D1 000231A0 DrawEdge
       1718   D2 0002F040 DrawFocusRect
       1719   D3 00084530 DrawFrame
       1720   D4 00084660 DrawFrameControl
       1721   D5 0007D370 DrawIcon
       1722   D6 00025540 DrawIconEx
       1723   D7 000309F0 DrawMenuBar
       1724   D8 0006F1B0 DrawMenuBarTemp
       1725   D9 0006F930 DrawStateA
       1726   DA 00027020 DrawStateW
       1727   DB 00053E50 DrawTextA
       1728   DC 00053ED0 DrawTextExA
       1729   DD 0001FB90 DrawTextExW
       1730   DE 0001FBC0 DrawTextW
       1553   DF 0002B650 DwmGetDxRgn
       1731   E0 0002C260 DwmGetDxSharedSurface
       1732   E1 00032190 DwmGetRemoteSessionOcclusionEvent
       1733   E2 000321A0 DwmGetRemoteSessionOcclusionState
       1734   E3 000321B0 DwmKernelShutdown
       1735   E4 000321C0 DwmKernelStartup
       1736   E5 0002B520 DwmLockScreenUpdates
       1737   E6 000321D0 DwmValidateWindow
       1738   E7 0005CF20 EditWndProc
       1739   E8 00030AD0 EmptyClipboard
       1740   E9 00020D70 EnableMenuItem
       1741   EA 00032200 EnableMouseInPointer
       1742   EB 00032220 EnableNonClientDpiScaling
       1743   EC 00032230 EnableOneCoreTransformMode
       1744   ED 00018270 EnableScrollBar
       1745   EE 000306B0 EnableSessionForMMCSS
       1746   EF 00029BC0 EnableWindow
       1747   F0 00028FF0 EndDeferWindowPos
       1748   F1 000322A0 EndDeferWindowPosEx
       1749   F2 000302C0 EndDialog
       1750   F3 000322B0 EndMenu
       1751   F4 000322C0 EndPaint
       1752   F5 00053C60 EndTask
       1753   F6 00073950 EnterReaderModeHelper
       1754   F7 00016050 EnumChildWindows
       1755   F8 00030620 EnumClipboardFormats
       1756   F9 0001A1A0 EnumDesktopWindows
       1757   FA 00001F90 EnumDesktopsA
       1758   FB 00002DC0 EnumDesktopsW
       1759   FC 0002C4A0 EnumDisplayDevicesA
       1760   FD 000260C0 EnumDisplayDevicesW
       1761   FE 000322D0 EnumDisplayMonitors
       1762   FF 0002C630 EnumDisplaySettingsA
       1763  100 0002C650 EnumDisplaySettingsExA
       1764  101 0001CA00 EnumDisplaySettingsExW
       1765  102 0001C9E0 EnumDisplaySettingsW
       1766  103 0004BDE0 EnumPropsA
       1767  104 0004BE00 EnumPropsExA
       1768  105 00026320 EnumPropsExW
       1769  106 0004BE20 EnumPropsW
       1770  107 00019F00 EnumThreadWindows
       1771  108 00001F70 EnumWindowStationsA
       1772  109 00002DA0 EnumWindowStationsW
       1773  10A 000197B0 EnumWindows
       1774  10B 00023500 EqualRect
       1775  10C 00076430 EvaluateProximityToPolygon
       1776  10D 00076960 EvaluateProximityToRect
       1777  10E 000322E0 ExcludeUpdateRgn
       1778  10F 0002A970 ExitWindowsEx
       1779  110 00023490 FillRect
       1780  111 00079FE0 FindWindowA
       1781  112 00024B50 FindWindowExA
       1782  113 00025370 FindWindowExW
       1783  114 00023C70 FindWindowW
       1784  115 0007D3E0 FlashWindow
       1785  116 000322F0 FlashWindowEx
       1786  117 0002F010 FrameRect
       1787  118 00055F50 FreeDDElParam
       1788  119 00032310 FrostCrashedWindow
       1789  11A 00029FD0 GetActiveWindow
       1790  11B 0007A000 GetAltTabInfo
       1791  11C 0007A000 GetAltTabInfoA
       1792  11D 0007FB50 GetAltTabInfoW
       1793  11E 00032330 GetAncestor
       1794  11F 00029A90 GetAppCompatFlags
       1795  120 0000BF00 GetAppCompatFlags2
       1796  121 00024220 GetAsyncKeyState
       1797  122 00032340 GetAutoRotationState
       1798  123 00018660 GetAwarenessFromDpiAwarenessContext
       1799  124 00032350 GetCIMSSM
       1800  125 00026D70 GetCapture
       1801  126 00032360 GetCaretBlinkTime
       1802  127 00032370 GetCaretPos
       1803  128 00024440 GetClassInfoA
       1804  129 000245F0 GetClassInfoExA
       1805  12A 00006F50 GetClassInfoExW
       1806  12B 00006F00 GetClassInfoW
       1807  12C 000812B0 GetClassLongA
       1808  12D 00081310 GetClassLongPtrA
       1809  12E 00019070 GetClassLongPtrW
       1810  12F 00017250 GetClassLongW
       1811  130 00080A00 GetClassNameA
       1812  131 00022F30 GetClassNameW
       1813  132 000197E0 GetClassWord
       1814  133 0000A9C0 GetClientRect
       1815  134 00032380 GetClipCursor
       1816  135 00032390 GetClipboardAccessToken
       1817  136 00029C70 GetClipboardData
       1818  137 0007A030 GetClipboardFormatNameA
       1819  138 0002B0E0 GetClipboardFormatNameW
       1820  139 0002B410 GetClipboardOwner
       1821  13A 0002AE90 GetClipboardSequenceNumber
       1822  13B 0007B200 GetClipboardViewer
       1823  13C 000323A0 GetComboBoxInfo
       1824  13D 000323B0 GetCurrentInputMessageSource
       1825  13E 000323C0 GetCursor
       1826  13F 0002AE60 GetCursorFrameInfo
       1827  140 000323D0 GetCursorInfo
       1828  141 00026930 GetCursorPos
       1829  142 00025660 GetDC
       1830  143 000323E0 GetDCEx
       1831  144 000323F0 GetDesktopID
       1832  145 0001F4A0 GetDesktopWindow
       1833  146 00030880 GetDialogBaseUnits
       1834  147 000569F0 GetDialogControlDpiChangeBehavior
       1835  148 00056A20 GetDialogDpiChangeBehavior
       1836  149 00032400 GetDisplayAutoRotationPreferences
       1837  14A 00027A70 GetDisplayConfigBufferSizes
       1838  14B 000230B0 GetDlgCtrlID
       1839  14C 00012350 GetDlgItem
       1840  14D 00056A70 GetDlgItemInt
       1841  14E 00081370 GetDlgItemTextA
       1842  14F 00030830 GetDlgItemTextW
       1843  150 00032420 GetDoubleClickTime
       1844  151 0007D440 GetDpiAwarenessContextForProcess
       1845  152 000269C0 GetDpiForMonitorInternal
       1846  153 0000BF60 GetDpiForSystem
       1847  154 00011D50 GetDpiForWindow
       1848  155 0007D460 GetDpiFromDpiAwarenessContext
       1849  156 00032430 GetExtendedPointerDeviceProperty
       1850  157 00024430 GetFocus
       1851  158 00032440 GetForegroundWindow
       1852  159 00032450 GetGUIThreadInfo
       1853  15A 00032460 GetGestureConfig
       1854  15B 0004C7D0 GetGestureExtraArgs
       1855  15C 0004C7F0 GetGestureInfo
       1856  15D 00032470 GetGuiResources
       1857  15E 00025B90 GetIconInfo
       1858  15F 0004E350 GetIconInfoExA
       1859  160 00028D90 GetIconInfoExW
       1860  161 0007D480 GetInputDesktop
       1861  162 00032490 GetInputLocaleInfo
       1862  163 00078CA0 GetInputState
       1863  164 000324D0 GetInternalWindowPos
       1864  165 0007D4A0 GetKBCodePage
       1865  166 0007A0D0 GetKeyNameTextA
       1866  167 0002AB00 GetKeyNameTextW
       1867  168 00022770 GetKeyState
       1868  169 000262D0 GetKeyboardLayout
       1869  16A 000324E0 GetKeyboardLayoutList
       1870  16B 0007A180 GetKeyboardLayoutNameA
       1871  16C 0002AB10 GetKeyboardLayoutNameW
       1872  16D 000324F0 GetKeyboardState
       1873  16E 000304D0 GetKeyboardType
       1874  16F 00010FA0 GetLastActivePopup
       1875  170 000264B0 GetLastInputInfo
       1876  171 00032500 GetLayeredWindowAttributes
       1877  172 00032510 GetListBoxInfo
       1878  173 0006D050 GetMagnificationDesktopColorEffect
       1879  174 0006D130 GetMagnificationDesktopMagnification
       1880  175 0006D1C0 GetMagnificationDesktopSamplingMode
       1881  176 00032520 GetMagnificationLensCtxInformation
       1882  177 00028F80 GetMenu
       1883  178 00032530 GetMenuBarInfo
       1884  179 0006F250 GetMenuCheckMarkDimensions
       1885  17A 0006F290 GetMenuContextHelpId
       1886  17B 00027990 GetMenuDefaultItem
       1887  17C 00001460 GetMenuInfo
       1888  17D 00018340 GetMenuItemCount
       1889  17E 00028CB0 GetMenuItemID
       1890  17F 000813C0 GetMenuItemInfoA
       1891  180 00021210 GetMenuItemInfoW
       1892  181 00032540 GetMenuItemRect
       1893  182 00020EF0 GetMenuState
       1894  183 000814C0 GetMenuStringA
       1895  184 0002F470 GetMenuStringW
       1896  185 000274C0 GetMessageA
       1897  186 00027F70 GetMessageExtraInfo
       1898  187 00029B50 GetMessagePos
       1899  188 00028C70 GetMessageTime
       1900  189 00023920 GetMessageW
       1901  18A 0002C390 GetMonitorInfoA
       1902  18B 00008430 GetMonitorInfoW
       1903  18C 00032550 GetMouseMovePointsEx
       1904  18D 00057050 GetNextDlgGroupItem
       1905  18E 00001DE0 GetNextDlgTabItem
       1906  18F 0002B430 GetOpenClipboardWindow
       1907  190 0001EEC0 GetParent
       1908  191 00026930 GetPhysicalCursorPos
       1909  192 00032580 GetPointerCursorId
       1910  193 00032590 GetPointerDevice
       1911  194 000325A0 GetPointerDeviceCursors
       1912  195 000325B0 GetPointerDeviceOrientation
       1913  196 000325C0 GetPointerDeviceProperties
       1914  197 000325D0 GetPointerDeviceRects
       1915  198 000325E0 GetPointerDevices
       1503  199 0004D700 GetPointerFrameArrivalTimes
       1916  19A 0004D850 GetPointerFrameInfo
       1917  19B 0004D8A0 GetPointerFrameInfoHistory
       1918  19C 0004D8E0 GetPointerFramePenInfo
       1919  19D 0004D930 GetPointerFramePenInfoHistory
       1920  19E 000325F0 GetPointerFrameTimes
       1921  19F 0004D970 GetPointerFrameTouchInfo
       1922  1A0 0004D9C0 GetPointerFrameTouchInfoHistory
       1923  1A1 0004DA00 GetPointerInfo
       1924  1A2 0004DA50 GetPointerInfoHistory
       1925  1A3 00032600 GetPointerInputTransform
       1926  1A4 0004DAA0 GetPointerPenInfo
       1927  1A5 0004DAF0 GetPointerPenInfoHistory
       1928  1A6 0004DB40 GetPointerTouchInfo
       1929  1A7 0004DB90 GetPointerTouchInfoHistory
       1930  1A8 00032620 GetPointerType
       1931  1A9 0007B220 GetPriorityClipboardFormat
       1932  1AA 0002B360 GetProcessDefaultLayout
       1933  1AB 00029FF0 GetProcessDpiAwarenessInternal
       2521  1AC 00032640 GetProcessUIContextInformation
       1934  1AD 00032650 GetProcessWindowStation
       1935  1AE 0007D4B0 GetProgmanWindow
       1936  1AF 0002C0A0 GetPropA
       1937  1B0 0001F320 GetPropW
       1938  1B1 00022D70 GetQueueStatus
       1939  1B2 00066470 GetRawInputBuffer
       1940  1B3 00032670 GetRawInputData
       1941  1B4 00081510 GetRawInputDeviceInfoA
       1942  1B5 00030870 GetRawInputDeviceInfoW
       1943  1B6 00032680 GetRawInputDeviceList
       1944  1B7 00032690 GetRawPointerDeviceData
       1945  1B8 00030E70 GetReasonTitleFromReasonCode
       1946  1B9 000326A0 GetRegisteredRawInputDevices
       1947  1BA 000326C0 GetScrollBarInfo
       1948  1BB 000191E0 GetScrollInfo
       1949  1BC 00030130 GetScrollPos
       1950  1BD 00078CD0 GetScrollRange
       1951  1BE 0007D510 GetSendMessageReceiver
       1952  1BF 0002A890 GetShellChangeNotifyWindow
       1953  1C0 000273A0 GetShellWindow
       1954  1C1 00028B20 GetSubMenu
       1955  1C2 000252C0 GetSysColor
       1956  1C3 00026FA0 GetSysColorBrush
       1957  1C4 000326D0 GetSystemDpiForProcess
       1958  1C5 000326E0 GetSystemMenu
       1959  1C6 00022180 GetSystemMetrics
       1960  1C7 0000BE00 GetSystemMetricsForDpi
       1961  1C8 00054070 GetTabbedTextExtentA
       1962  1C9 00054160 GetTabbedTextExtentW
       1963  1CA 0002B380 GetTaskmanWindow
       1964  1CB 000326F0 GetThreadDesktop
       1965  1CC 00024130 GetThreadDpiAwarenessContext
       1966  1CD 0007D530 GetThreadDpiHostingBehavior
       1967  1CE 00032700 GetTitleBarInfo
       1968  1CF 00032710 GetTopLevelWindow
       1969  1D0 0002B830 GetTopWindow
       1970  1D1 0004EAC0 GetTouchInputInfo
       1971  1D2 0007D570 GetUnpredictedMessagePos
       1972  1D3 0002A060 GetUpdateRect
       1973  1D4 0007D590 GetUpdateRgn
       1974  1D5 0007B240 GetUpdatedClipboardFormats
       1975  1D6 0002ACA0 GetUserObjectInformationA
       1976  1D7 00032740 GetUserObjectInformationW
       1977  1D8 0007D620 GetUserObjectSecurity
       1978  1D9 0007D660 GetWinStationInfo
       1979  1DA 00010CA0 GetWindow
       1980  1DB 00032750 GetWindowBand
       1981  1DC 00032760 GetWindowCompositionAttribute
       1982  1DD 00032770 GetWindowCompositionInfo
       1983  1DE 0007D680 GetWindowContextHelpId
       1984  1DF 00032780 GetWindowDC
       1985  1E0 00032790 GetWindowDisplayAffinity
       1986  1E1 00012020 GetWindowDpiAwarenessContext
       1987  1E2 0007D6A0 GetWindowDpiHostingBehavior
       1988  1E3 000327A0 GetWindowFeedbackSetting
       1989  1E4 0000B820 GetWindowInfo
       1990  1E5 00011CF0 GetWindowLongA
       1991  1E6 000120F0 GetWindowLongPtrA
       1992  1E7 00012FB0 GetWindowLongPtrW
       1993  1E8 00012D60 GetWindowLongW
       1994  1E9 000327C0 GetWindowMinimizeRect
       1995  1EA 00081630 GetWindowModuleFileName
       1996  1EB 00081630 GetWindowModuleFileNameA
       1997  1EC 0007E3E0 GetWindowModuleFileNameW
       1998  1ED 000327D0 GetWindowPlacement
       1999  1EE 000327E0 GetWindowProcessHandle
       2000  1EF 00009330 GetWindowRect
       2003  1F0 000288D0 GetWindowRgn
       2004  1F1 00011000 GetWindowRgnBox
       2006  1F2 000327F0 GetWindowRgnEx
       2007  1F3 00028290 GetWindowTextA
       2008  1F4 00081670 GetWindowTextLengthA
       2009  1F5 00011B30 GetWindowTextLengthW
       2011  1F6 00013AA0 GetWindowTextW
       2012  1F7 00002040 GetWindowThreadProcessId
       2013  1F8 00078D90 GetWindowWord
       2014  1F9 00032800 GhostWindowFromHungWindow
       2015  1FA 0007D700 GrayStringA
       2016  1FB 0007D760 GrayStringW
       2505  1FC 00032810 HandleDelegatedInput
       2017  1FD 00027BD0 HideCaret
       2018  1FE 00032830 HiliteMenuItem
       2019  1FF 00032840 HungWindowFromGhostWindow
       2020  200 0007A830 IMPGetIMEA
       2021  201 0007A850 IMPGetIMEW
       2022  202 0007A870 IMPQueryIMEA
       2023  203 0007A890 IMPQueryIMEW
       2024  204 0007A8B0 IMPSetIMEA
       2025  205 0007A8D0 IMPSetIMEW
       2026  206 00032850 ImpersonateDdeClientWindow
       2027  207 00026FD0 InSendMessage
       2028  208 00024100 InSendMessageEx
       2029  209 00006DF0 InflateRect
       2030  20A 00032860 InheritWindowMonitor
       2031  20B 00004C40 InitDManipHook
       2032  20C 00032870 InitializeGenericHidInjection
       2033  20D 00032880 InitializeInputDeviceInjection
       2034  20E 00026250 InitializeLpkHooks
       2035  20F 00032890 InitializePointerDeviceInjection
       2036  210 000328A0 InitializePointerDeviceInjectionEx
       2037  211 000328B0 InitializeTouchInjection
       2038  212 000328C0 InjectDeviceInput
       2039  213 000328D0 InjectGenericHidInput
       2040  214 000328E0 InjectKeyboardInput
       2041  215 000328F0 InjectMouseInput
       2042  216 00032900 InjectPointerInput
       2043  217 00032900 InjectSyntheticPointerInput
       2044  218 00032910 InjectTouchInput
       2045  219 000816C0 InsertMenuA
       2046  21A 00081740 InsertMenuItemA
       2047  21B 00021070 InsertMenuItemW
       2048  21C 00020FF0 InsertMenuW
       2049  21D 00030AC0 InternalGetWindowIcon
       2050  21E 00026E30 InternalGetWindowText
       2051  21F 0000C1D0 IntersectRect
       2052  220 00032930 InvalidateRect
       2053  221 00032940 InvalidateRgn
       2054  222 00025470 InvertRect
       2055  223 0007B260 IsCharAlphaA
       2056  224 0007B270 IsCharAlphaNumericA
       2057  225 00030A90 IsCharAlphaNumericW
       2058  226 0007B280 IsCharAlphaW
       2059  227 0007B290 IsCharLowerA
       2060  228 0007B2A0 IsCharLowerW
       2061  229 0007B2B0 IsCharUpperA
       2062  22A 0007B2C0 IsCharUpperW
       2063  22B 00011DB0 IsChild
       2064  22C 00024410 IsClipboardFormatAvailable
       2065  22D 00056CC0 IsDialogMessage
       2066  22E 00056CC0 IsDialogMessageA
       2067  22F 00016A80 IsDialogMessageW
       2068  230 00056BE0 IsDlgButtonChecked
       2069  231 00026F60 IsGUIThread
       2070  232 00028BF0 IsHungAppWindow
       2071  233 00022DF0 IsIconic
       2072  234 00028190 IsImmersiveProcess
       2073  235 00029BF0 IsInDesktopWindowBand
       2074  236 000185E0 IsMenu
       2075  237 00032960 IsMouseInPointerEnabled
       2076  238 00032990 IsOneCoreTransformMode
       2077  239 000228B0 IsProcessDPIAware
       2078  23A 0007D7B0 IsQueueAttached
       2079  23B 00023530 IsRectEmpty
       2080  23C 00073BD0 IsSETEnabled
       2081  23D 000254F0 IsServerSideWindow
       2082  23E 0000C070 IsThreadDesktopComposited
       2528  23F 00025450 IsThreadMessageQueueAttached
       2083  240 00001270 IsThreadTSFEventAware
       2084  241 000329B0 IsTopLevelWindow
       2085  242 000329C0 IsTouchWindow
       2086  243 0007D7D0 IsValidDpiAwarenessContext
       2087  244 00023DF0 IsWinEventHookInstalled
       2088  245 00010E80 IsWindow
       2089  246 000236E0 IsWindowArranged
       2090  247 000170A0 IsWindowEnabled
       2091  248 00017550 IsWindowInDestroy
       2092  249 00012080 IsWindowRedirectedForPrint
       2093  24A 000171C0 IsWindowUnicode
       2094  24B 00021D30 IsWindowVisible
       2095  24C 0004D5C0 IsWow64Message
       2096  24D 00018600 IsZoomed
       2097  24E 000329F0 KillTimer
       2098  24F 0004E490 LoadAcceleratorsA
       2099  250 000269F0 LoadAcceleratorsW
       2100  251 00030420 LoadBitmapA
       2101  252 000058E0 LoadBitmapW
       2102  253 000083F0 LoadCursorA
       2103  254 00049640 LoadCursorFromFileA
       2104  255 000496B0 LoadCursorFromFileW
       2105  256 00009E20 LoadCursorW
       2106  257 0002B270 LoadIconA
       2107  258 00008860 LoadIconW
       2108  259 0002E600 LoadImageA
       2109  25A 00008B00 LoadImageW
       2110  25B 0007D7F0 LoadKeyboardLayoutA
       2111  25C 0007D880 LoadKeyboardLayoutEx
       2112  25D 0001DB10 LoadKeyboardLayoutW
       2113  25E 0002B500 LoadLocalFonts
       2114  25F 0004CE40 LoadMenuA
       2115  260 00003670 LoadMenuIndirectA
       2116  261 00003670 LoadMenuIndirectW
       2117  262 000035B0 LoadMenuW
       2118  263 0002B440 LoadRemoteFonts
       2119  264 0004E4D0 LoadStringA
       2120  265 00026D50 LoadStringW
       2121  266 0007D8B0 LockSetForegroundWindow
       2122  267 00032A10 LockWindowStation
       2123  268 00032A20 LockWindowUpdate
       2124  269 00032A30 LockWorkStation
       2125  26A 00032A50 LogicalToPhysicalPoint
       2126  26B 00032A60 LogicalToPhysicalPointForPerMonitorDPI
       2127  26C 0004E560 LookupIconIdFromDirectory
       2128  26D 00005F30 LookupIconIdFromDirectoryEx
       2129  26E 00024E40 MBToWCSEx
       2130  26F 00024E10 MBToWCSExt
       2131  270 00071C80 MB_GetString
       2132  271 0002B610 MITGetCursorUpdateHandle
       2133  272 0002B650 MITSetForegroundRoutingInfo
       2134  273 0002A320 MITSetInputDelegationMode
       2135  274 00073EC0 MITSetLastInputRecipient
       2136  275 00073ED0 MITSynthesizeTouchInput
       2137  276 00029AD0 MakeThreadTSFEventAware
       2138  277 000301A0 MapDialogRect
       2139  278 00032A70 MapPointsByVisualIdentifier
       2140  279 0007A1F0 MapVirtualKeyA
       2141  27A 0007A250 MapVirtualKeyExA
       2142  27B 00029A70 MapVirtualKeyExW
       2143  27C 00026E60 MapVirtualKeyW
       2144  27D 00032A80 MapVisualRelativePoints
       2145  27E 000136A0 MapWindowPoints
       2146  27F 00032A90 MenuItemFromPoint
       2147  280 0004D5E0 MenuWindowProcA
       2148  281 0004D660 MenuWindowProcW
       2149  282 0007D8D0 MessageBeep
       2150  283 00071CB0 MessageBoxA
       2151  284 00071D10 MessageBoxExA
       2152  285 00071D40 MessageBoxExW
       2153  286 00071D70 MessageBoxIndirectA
       2154  287 00071F10 MessageBoxIndirectW
       2155  288 00071FD0 MessageBoxTimeoutA
       2156  289 00072120 MessageBoxTimeoutW
       2157  28A 000722F0 MessageBoxW
       2158  28B 000817B0 ModifyMenuA
       2159  28C 0002FD90 ModifyMenuW
       2160  28D 00008820 MonitorFromPoint
       2161  28E 0000A370 MonitorFromRect
       2162  28F 00022030 MonitorFromWindow
       2163  290 00032AA0 MoveWindow
       2164  291 00021AB0 MsgWaitForMultipleObjects
       2165  292 00021B70 MsgWaitForMultipleObjectsEx
       2166  293 0007D8F0 NotifyOverlayWindow
       2167  294 0001CB70 NotifyWinEvent
       2168  295 00072CF0 OemKeyScan
       2169  296 00072D70 OemToCharA
       2170  297 00072DC0 OemToCharBuffA
       2171  298 00072E10 OemToCharBuffW
       2172  299 00072E60 OemToCharW
       2173  29A 00011CC0 OffsetRect
       2174  29B 0002A1D0 OpenClipboard
       2175  29C 000283A0 OpenDesktopA
       2176  29D 00028410 OpenDesktopW
       2177  29E 0007D910 OpenIcon
       2178  29F 00032AC0 OpenInputDesktop
       2179  2A0 00032AD0 OpenThreadDesktop
       2180  2A1 0001DED0 OpenWindowStationA
       2181  2A2 0001DF30 OpenWindowStationW
       2182  2A3 00055FC0 PackDDElParam
       2183  2A4 00076A90 PackTouchHitTestingProximityEvaluation
       2184  2A5 00080580 PaintDesktop
       2185  2A6 00032AE0 PaintMenuBar
       2186  2A7 00032AF0 PaintMonitor
       2187  2A8 000199D0 PeekMessageA
       2188  2A9 00019260 PeekMessageW
       2189  2AA 00032B10 PhysicalToLogicalPoint
       2190  2AB 00032B20 PhysicalToLogicalPointForPerMonitorDPI
       2191  2AC 00019F30 PostMessageA
       2192  2AD 00022820 PostMessageW
       2193  2AE 0002A380 PostQuitMessage
       2194  2AF 000307A0 PostThreadMessageA
       2195  2B0 000187B0 PostThreadMessageW
       2196  2B1 00032B30 PrintWindow
       2197  2B2 00066010 PrivateExtractIconExA
       2198  2B3 000660A0 PrivateExtractIconExW
       2199  2B4 00066240 PrivateExtractIconsA
       2200  2B5 0001B460 PrivateExtractIconsW
       2201  2B6 00001E80 PrivateRegisterICSProc
       2202  2B7 00011E20 PtInRect
       2203  2B8 00032B70 QueryBSDRWindow
       2204  2B9 00010580 QueryDisplayConfig
       2205  2BA 00032B80 QuerySendMessage
       2206  2BB 00032B90 RIMAddInputObserver
       2207  2BC 00032BA0 RIMAreSiblingDevices
       2208  2BD 00032BB0 RIMDeviceIoControl
       2209  2BE 00032BC0 RIMEnableMonitorMappingForDevice
       2210  2BF 00032BD0 RIMFreeInputBuffer
       2211  2C0 00032BE0 RIMGetDevicePreparsedData
       2212  2C1 00032BF0 RIMGetDevicePreparsedDataLockfree
       2213  2C2 00032C00 RIMGetDeviceProperties
       2214  2C3 00032C10 RIMGetDevicePropertiesLockfree
       2215  2C4 00032C20 RIMGetPhysicalDeviceRect
       2216  2C5 00032C30 RIMGetSourceProcessId
       2217  2C6 00032C40 RIMObserveNextInput
       2218  2C7 00032C50 RIMOnPnpNotification
       2219  2C8 00032C60 RIMOnTimerNotification
       2220  2C9 00032C70 RIMReadInput
       2221  2CA 00032C80 RIMRegisterForInput
       2222  2CB 00032C90 RIMRemoveInputObserver
       2223  2CC 00032CA0 RIMSetExtendedDeviceProperty
       2224  2CD 00032CB0 RIMSetTestModeStatus
       2225  2CE 00032CC0 RIMUnregisterForInput
       2226  2CF 00032CD0 RIMUpdateInputObserverRegistration
       2227  2D0 00032CE0 RealChildWindowFromPoint
       2228  2D1 0007A330 RealGetWindowClass
       2229  2D2 0007A330 RealGetWindowClassA
       2230  2D3 000243E0 RealGetWindowClassW
       2231  2D4 00073D70 ReasonCodeNeedsBugID
       2232  2D5 00073D80 ReasonCodeNeedsComment
       2233  2D6 00031450 RecordShutdownReason
       2234  2D7 00032CF0 RedrawWindow
       2235  2D8 00032D00 RegisterBSDRWindow
       2236  2D9 000247F0 RegisterClassA
       2237  2DA 00081830 RegisterClassExA
       2238  2DB 00007140 RegisterClassExW
       2239  2DC 00007170 RegisterClassW
       2240  2DD 00024C30 RegisterClipboardFormatA
       2241  2DE 00025A80 RegisterClipboardFormatW
       2242  2DF 00032D10 RegisterDManipHook
       2243  2E0 00029F30 RegisterDeviceNotificationA
       2244  2E1 00029F30 RegisterDeviceNotificationW
       2245  2E2 00032D20 RegisterErrorReportingDialog
       2246  2E3 0007D990 RegisterFrostWindow
       2247  2E4 00030AA0 RegisterGhostWindow
       2248  2E5 00032D30 RegisterHotKey
       2249  2E6 0002B1C0 RegisterLogonProcess
       2250  2E7 0002A530 RegisterMessagePumpHook
       2251  2E8 00032D40 RegisterPointerDeviceNotifications
       2252  2E9 0004DC00 RegisterPointerInputTarget
       2253  2EA 0004D700 RegisterPointerInputTargetEx
       2254  2EB 00029000 RegisterPowerSettingNotification
       2255  2EC 00032D50 RegisterRawInputDevices
       2256  2ED 00032D60 RegisterServicesProcess
       2257  2EE 00032D70 RegisterSessionPort
       2258  2EF 0002B2D0 RegisterShellHookWindow
       2259  2F0 00080790 RegisterSuspendResumeNotification
       2260  2F1 00030A50 RegisterSystemThread
       2261  2F2 00032D90 RegisterTasklist
       2262  2F3 00032DA0 RegisterTouchHitTestingWindow
       2263  2F4 000807F0 RegisterTouchWindow
       2264  2F5 0002ABE0 RegisterUserApiHook
       2265  2F6 00024C30 RegisterWindowMessageA
       2266  2F7 00025A80 RegisterWindowMessageW
       2267  2F8 0002AE40 ReleaseCapture
       2268  2F9 00023EE0 ReleaseDC
       2269  2FA 00032DC0 ReleaseDwmHitTestWaiters
       2270  2FB 0002B5D0 RemoveClipboardFormatListener
       2271  2FC 00032100 RemoveInjectionDevice
       2272  2FD 00032DD0 RemoveMenu
       2273  2FE 0007A3E0 RemovePropA
       2274  2FF 00025300 RemovePropW
       2275  300 00001D80 RemoveThreadTSFEventAwareness
       2276  301 00032DE0 RemoveVisualIdentifier
       2277  302 000288B0 ReplyMessage
       2551  303 00001EA0 ReportInertia
       2278  304 00032E00 ResolveDesktopForWOW
       2279  305 00056040 ReuseDDElParam
       2280  306 00018380 ScreenToClient
       2281  307 0006EF10 ScrollChildren
       2282  308 00026220 ScrollDC
       2283  309 0007D9F0 ScrollWindow
       2284  30A 00025EA0 ScrollWindowEx
       2285  30B 00081870 SendDlgItemMessageA
       2286  30C 00001220 SendDlgItemMessageW
       2287  30D 0007A8F0 SendIMEMessageExA
       2288  30E 0007A910 SendIMEMessageExW
       2289  30F 00032E30 SendInput
       2290  310 00028220 SendMessageA
       2291  311 0007A480 SendMessageCallbackA
       2292  312 00026DA0 SendMessageCallbackW
       2293  313 0002F8A0 SendMessageTimeoutA
       2294  314 00021C20 SendMessageTimeoutW
       2295  315 00014DF0 SendMessageW
       2296  316 0002EFD0 SendNotifyMessageA
       2297  317 00027E30 SendNotifyMessageW
       2298  318 00032E70 SetActiveWindow
       2299  319 00032EC0 SetCapture
       2300  31A 000294C0 SetCaretBlinkTime
       2301  31B 0002A300 SetCaretPos
       2302  31C 0007A510 SetClassLongA
       2303  31D 0007A530 SetClassLongPtrA
       2304  31E 0002B140 SetClassLongPtrW
       2305  31F 000309D0 SetClassLongW
       2306  320 00032EE0 SetClassWord
       2307  321 0002ED40 SetClipboardData
       2308  322 00030A10 SetClipboardViewer
       2309  323 00032EF0 SetCoalescableTimer
       2571  324 00032F00 SetCoreWindow
       2310  325 00029B90 SetCursor
       2311  326 00032F20 SetCursorContents
       2312  327 00032F40 SetCursorPos
       2313  328 0002B640 SetDebugErrorLevel
       2314  329 0007DA50 SetDeskWallpaper
       2315  32A 00032F50 SetDesktopColorTransform
       2316  32B 00032F60 SetDialogControlDpiChangeBehavior
       2317  32C 00056C10 SetDialogDpiChangeBehavior
       2318  32D 00032F70 SetDisplayAutoRotationPreferences
       2319  32E 00082F40 SetDisplayConfig
       2320  32F 00001360 SetDlgItemInt
       2321  330 000818C0 SetDlgItemTextA
       2322  331 0007E420 SetDlgItemTextW
       2323  332 0007DA70 SetDoubleClickTime
       2324  333 00032FA0 SetFeatureReportResponse
       2325  334 00032FB0 SetFocus
       2326  335 0002A7C0 SetForegroundWindow
       2327  336 00032FD0 SetGestureConfig
       2328  337 00033000 SetInternalWindowPos
       2329  338 00033010 SetKeyboardState
       2330  339 00072ED0 SetLastErrorEx
       2331  33A 00033020 SetLayeredWindowAttributes
       2332  33B 0006D2B0 SetMagnificationDesktopColorEffect
       2333  33C 0006D380 SetMagnificationDesktopMagnification
       2334  33D 00033030 SetMagnificationDesktopMagnifierOffsetsDWMUpdated
       2335  33E 0006D3F0 SetMagnificationDesktopSamplingMode
       2336  33F 00033040 SetMagnificationLensCtxInformation
       2337  340 0002AFC0 SetMenu
       2338  341 00033050 SetMenuContextHelpId
       2339  342 00033060 SetMenuDefaultItem
       2340  343 00001500 SetMenuInfo
       2341  344 00001B80 SetMenuItemBitmaps
       2342  345 000818F0 SetMenuItemInfoA
       2343  346 00020E80 SetMenuItemInfoW
       2344  347 0004D6E0 SetMessageExtraInfo
       2345  348 0002B670 SetMessageQueue
       2346  349 00033070 SetMirrorRendering
       2347  34A 0002ABC0 SetParent
       2348  34B 00032F40 SetPhysicalCursorPos
       2349  34C 00033080 SetPointerDeviceInputSpace
       2350  34D 0001A960 SetProcessDPIAware
       2351  34E 0007DA90 SetProcessDefaultLayout
       2352  34F 00019100 SetProcessDpiAwarenessContext
       2353  350 00019190 SetProcessDpiAwarenessInternal
       2354  351 000330C0 SetProcessRestrictionExemption
       2355  352 000330D0 SetProcessWindowStation
       2356  353 0007DAB0 SetProgmanWindow
       2357  354 0007A650 SetPropA
       2358  355 00010AD0 SetPropW
       2359  356 00023D40 SetRect
       2360  357 00023D20 SetRectEmpty
       2361  358 0001D060 SetScrollInfo
       2362  359 00030930 SetScrollPos
       2363  35A 0002F520 SetScrollRange
       2364  35B 0002B5B0 SetShellChangeNotifyWindow
       2365  35C 0007DAD0 SetShellWindow
       2366  35D 000330F0 SetShellWindowEx
       2367  35E 0002B4C0 SetSysColors
       2368  35F 00072EE0 SetSysColorsTemp
       2369  360 00080810 SetSystemCursor
       2370  361 00033100 SetSystemMenu
       2371  362 0002B580 SetTaskmanWindow
       2372  363 0002A960 SetThreadDesktop
       2373  364 00017410 SetThreadDpiAwarenessContext
       2374  365 0007DB00 SetThreadDpiHostingBehavior
       2375  366 00033120 SetThreadInputBlocked
       2376  367 00025070 SetTimer
       2377  368 0007DBE0 SetUserObjectInformationA
       2378  369 0007DC50 SetUserObjectInformationW
       2379  36A 0002AEF0 SetUserObjectSecurity
       2380  36B 00027E90 SetWinEventHook
       2381  36C 00033140 SetWindowBand
       2382  36D 00027AE0 SetWindowCompositionAttribute
       2383  36E 00033150 SetWindowCompositionTransition
       2384  36F 0007DC60 SetWindowContextHelpId
       2385  370 00033160 SetWindowDisplayAffinity
       2386  371 00033170 SetWindowFeedbackSetting
       2387  372 0001A980 SetWindowLongA
       2388  373 0002B120 SetWindowLongPtrA
       2389  374 00011320 SetWindowLongPtrW
       2390  375 00017100 SetWindowLongW
       2391  376 00033190 SetWindowPlacement
       2392  377 000331A0 SetWindowPos
       2393  378 000187E0 SetWindowRgn
       2394  379 00080870 SetWindowRgnEx
       2395  37A 0002ADC0 SetWindowStationUser
       2396  37B 00081960 SetWindowTextA
       2397  37C 00011C00 SetWindowTextW
       2398  37D 000331C0 SetWindowWord
       2399  37E 0004CB90 SetWindowsHookA
       2400  37F 0004CBB0 SetWindowsHookExA
       2401  380 00033C40 SetWindowsHookExAW
       2402  381 00029F10 SetWindowsHookExW
       2403  382 0004CBD0 SetWindowsHookW
       2404  383 00027BF0 ShowCaret
       2405  384 000331D0 ShowCursor
       2406  385 00030A70 ShowOwnedPopups
       2407  386 000331E0 ShowScrollBar
       2408  387 0007DC80 ShowStartGlass
       2409  388 000331F0 ShowSystemCursor
       2410  389 00033200 ShowWindow
       2411  38A 00033210 ShowWindowAsync
       2412  38B 000294E0 ShutdownBlockReasonCreate
       2413  38C 00033220 ShutdownBlockReasonDestroy
       2414  38D 00033230 ShutdownBlockReasonQuery
       2415  38E 00033240 SignalRedirectionStartComplete
       2416  38F 00033250 SkipPointerFrameMessages
       2417  390 00072350 SoftModalMessageBox
       2418  391 00033270 SoundSentry
       2419  392 00028E90 SubtractRect
       2420  393 0007DCA0 SwapMouseButton
       2421  394 0002B2B0 SwitchDesktop
       2422  395 0002B5A0 SwitchDesktopWithFade
       2423  396 00001B20 SwitchToThisWindow
       2424  397 00023830 SystemParametersInfoA
       2425  398 00019930 SystemParametersInfoForDpi
       2426  399 00022F60 SystemParametersInfoW
       2427  39A 000541E0 TabbedTextOutA
       2428  39B 00054300 TabbedTextOutW
       2429  39C 0007DCC0 TileChildWindows
       2430  39D 0006EF40 TileWindows
       2431  39E 0007DCF0 ToAscii
       2432  39F 0007DD70 ToAsciiEx
       2433  3A0 000808B0 ToUnicode
       2434  3A1 000275E0 ToUnicodeEx
       2435  3A2 00033280 TrackMouseEvent
       2436  3A3 0006F2B0 TrackPopupMenu
       2437  3A4 00033290 TrackPopupMenuEx
       2438  3A5 0007DEE0 TranslateAccelerator
       2439  3A6 0007DEE0 TranslateAcceleratorA
       2440  3A7 00025030 TranslateAcceleratorW
       2441  3A8 0006EF70 TranslateMDISysAccel
       2442  3A9 00019D90 TranslateMessage
       2443  3AA 00025A30 TranslateMessageEx
       2504  3AB 000332A0 UndelegateInput
       2444  3AC 000332B0 UnhookWinEvent
       2445  3AD 0007DF70 UnhookWindowsHook
       2446  3AE 00029C40 UnhookWindowsHookEx
       2447  3AF 00023F40 UnionRect
       2448  3B0 0007DF90 UnloadKeyboardLayout
       2449  3B1 000332C0 UnlockWindowStation
       2450  3B2 00056100 UnpackDDElParam
       2451  3B3 00024470 UnregisterClassA
       2452  3B4 00007580 UnregisterClassW
       2453  3B5 0002A920 UnregisterDeviceNotification
       2454  3B6 000332D0 UnregisterHotKey
       2455  3B7 000306D0 UnregisterMessagePumpHook
       2456  3B8 0004DC30 UnregisterPointerInputTarget
       2457  3B9 0004D700 UnregisterPointerInputTargetEx
       2458  3BA 0002A330 UnregisterPowerSettingNotification
       2459  3BB 000332E0 UnregisterSessionPort
       2460  3BC 00080900 UnregisterSuspendResumeNotification
       2461  3BD 00080930 UnregisterTouchWindow
       2462  3BE 000332F0 UnregisterUserApiHook
       2463  3BF 00033300 UpdateDefaultDesktopThumbnail
       2464  3C0 0002FD20 UpdateLayeredWindow
       2465  3C1 0002DFF0 UpdateLayeredWindowIndirect
       2466  3C2 0001D260 UpdatePerUserSystemParameters
       2467  3C3 00018680 UpdateWindow
       2468  3C4 00033310 UpdateWindowInputSinkHints
       2469  3C5 0000F900 User32InitializeImmEntryTable
       2470  3C6 0000E4D0 UserClientDllInitialize
       2471  3C7 00033330 UserHandleGrantAccess
       2472  3C8 00054350 UserLpkPSMTextOut
       2473  3C9 00054560 UserLpkTabbedTextOut
       2474  3CA 0002E8E0 UserRealizePalette
       2475  3CB 0007DFC0 UserRegisterWowHandlers
       2476  3CC 0002B650 VRipOutput
       2477  3CD 0002B650 VTagOutput
       2478  3CE 00033340 ValidateRect
       2479  3CF 00001E50 ValidateRgn
       2480  3D0 0007A720 VkKeyScanA
       2481  3D1 0007A780 VkKeyScanExA
       2482  3D2 000015A0 VkKeyScanExW
       2483  3D3 0002A3D0 VkKeyScanW
       2484  3D4 00005680 WCSToMBEx
       2485  3D5 0007A930 WINNLSEnableIME
       2486  3D6 0007A950 WINNLSGetEnableStatus
       2487  3D7 0002B650 WINNLSGetIMEHotkey
       2488  3D8 0002B060 WaitForInputIdle
       2489  3D9 00033360 WaitForRedirectionStartComplete
       2490  3DA 00033370 WaitMessage
       2491  3DB 0002FEC0 WinHelpA
       2492  3DC 0002FE10 WinHelpW
       2493  3DD 00033380 WindowFromDC
       2494  3DE 00033390 WindowFromPhysicalPoint
       2495  3DF 000333A0 WindowFromPoint
       2496  3E0 000771B0 _UserTestTokenForInteractive
       2497  3E1 000A7FC0 gSharedInfo
       2498  3E2 00087940 gapfnScSendMessage
       2499  3E3 00080950 keybd_event
       2500  3E4 0002A8D0 mouse_event
       2501  3E5 000264E0 wsprintfA
       2502  3E6 00028500 wsprintfW
       2543  3E7 00026510 wvsprintfA
       2547  3E8 00028530 wvsprintfW
       1502      0004EAF0 [NONAME]
       1550      00073DE0 [NONAME]
       1551      00073E60 [NONAME]
       1552      00073D90 [NONAME]
       1554      0002B650 [NONAME]
       2001      0006D430 [NONAME]
       2002      0006D210 [NONAME]
       2005      00032ED0 [NONAME]
       2010      00033260 [NONAME]
       2506      0004C8A0 [NONAME]
       2507      00032E80 [NONAME]
       2508      00032B50 [NONAME]
       2509      00031E90 [NONAME]
       2510      000321F0 [NONAME]
       2511      00032F90 [NONAME]
       2512      00032410 [NONAME]
       2513      00032E60 [NONAME]
       2514      0004DBE0 [NONAME]
       2515      0004DC20 [NONAME]
       2516      00032090 [NONAME]
       2517      00032720 [NONAME]
       2518      0001A880 [NONAME]
       2519      00032210 [NONAME]
       2520      00032970 [NONAME]
       2522      00032EA0 [NONAME]
       2523      00001010 [NONAME]
       2524      0004BE70 [NONAME]
       2525      0002B3D0 [NONAME]
       2526      0004BE40 [NONAME]
       2527      0001C130 [NONAME]
       2529      00032120 [NONAME]
       2530      00033350 [NONAME]
       2531      00032EB0 [NONAME]
       2532      00032F80 [NONAME]
       2533      00031F30 [NONAME]
       2534      00001FB0 [NONAME]
       2535      00078C40 [NONAME]
       2536      000271F0 [NONAME]
       2537      00032E20 [NONAME]
       2538      00032A00 [NONAME]
       2539      00032820 [NONAME]
       2540      00078DF0 [NONAME]
       2541      00032660 [NONAME]
       2542      00032D80 [NONAME]
       2544      00032260 [NONAME]
       2545      00032570 [NONAME]
       2546      00032DB0 [NONAME]
       2548      00032630 [NONAME]
       2549      00033090 [NONAME]
       2550      00031FD0 [NONAME]
       2552      0007D9B0 [NONAME]
       2553      0007DE60 [NONAME]
       2554      0007D950 [NONAME]
       2555      00084EF0 [NONAME]
       2556      00032E50 [NONAME]
       2557      0001A0E0 [NONAME]
       2558      00019D00 [NONAME]
       2559      00032560 [NONAME]
       2560      0004D720 [NONAME]
       2561      0002B4A0 [NONAME]
       2563      00031F90 [NONAME]
       2564      0002B4E0 [NONAME]
       2565      0002AD70 [NONAME]
       2566      00033130 [NONAME]
       2567      0002B560 [NONAME]
       2568      0002AFE0 [NONAME]
       2569      00026490 [NONAME]
       2570      0007DB80 [NONAME]
       2572      00022930 [NONAME]
       2573      00011BC0 [NONAME]
       2574      000122F0 [NONAME]
       2575      0007D420 [NONAME]
       2576      00032F10 [NONAME]
       2577      0002B2F0 [NONAME]
       2578      00032AB0 [NONAME]
       2579      000331B0 [NONAME]
       2581      0002ABA0 [NONAME]
       2582      00026190 [NONAME]
       2584      0007D3A0 [NONAME]
       2585      00033320 [NONAME]
       2586      00029B70 [NONAME]
       2587      00004C20 [NONAME]
       2588      00031EA0 [NONAME]
       2589      000324B0 [NONAME]
       2590      000324A0 [NONAME]
       2591      00032E40 [NONAME]
       2592      00032FE0 [NONAME]
       2593      00032920 [NONAME]
       2594      00032FF0 [NONAME]
       2595      000330A0 [NONAME]
       2597      00028C90 [NONAME]
       2598      0004E2D0 [NONAME]
       2599      00026F40 [NONAME]
       2600      0002B540 [NONAME]
       2606      00032250 [NONAME]
       2608      00032B40 [NONAME]
       2609      000324C0 [NONAME]
       2610      00031FE0 [NONAME]
       2611      00032290 [NONAME]
       2612      0002A360 [NONAME]
       2613      00024DF0 [NONAME]
       2614      000326B0 [NONAME]
       2615      00032240 [NONAME]
       2616      00031ED0 [NONAME]
       2617      000329A0 [NONAME]
       2618      00083150 [NONAME]
       2619      0002B0F0 [NONAME]
       2620      00082F00 [NONAME]
       2621      00032010 [NONAME]
       2622      00033110 [NONAME]
       2626      00032DF0 [NONAME]
       2627      00032E90 [NONAME]
       2628      00032070 [NONAME]
       2629      000320C0 [NONAME]
       2630      000327B0 [NONAME]
       2631      00032280 [NONAME]
       2632      00033180 [NONAME]
       2633      00032050 [NONAME]
       2634      0007DAE0 [NONAME]
       2635      00012150 [NONAME]
       2636      000281D0 [NONAME]
       2637      000330E0 [NONAME]
       2638      00032000 [NONAME]
       2639      00032F30 [NONAME]
       2640      0007BFD0 [NONAME]
       2641      0007C160 [NONAME]
       2642      00032300 [NONAME]
       2643      00032E10 [NONAME]
       2644      00032080 [NONAME]
       2645      0007C2C0 [NONAME]
       2646      00032B60 [NONAME]
       2647      00031FF0 [NONAME]
       2648      000320D0 [NONAME]
       2649      00032FC0 [NONAME]
       2650      00032480 [NONAME]
       2651      00032150 [NONAME]
       2652      00032730 [NONAME]
       2653      00032610 [NONAME]
       2654      000330B0 [NONAME]
       2700      00030570 [NONAME]
       2702      0006F230 [NONAME]
       2703      00032980 [NONAME]
       2704      000321E0 [NONAME]
       2705      00032950 [NONAME]
       2706      000329D0 [NONAME]
       2707      00018700 [NONAME]
       2708      00031F00 [NONAME]
       2709      00032270 [NONAME]
       2710      000329E0 [NONAME]
       2711      00032320 [NONAME]
       2712      0001F520 [NONAME]
       2713      0002AF50 [NONAME]
       2714      00030530 [NONAME]
       2715      00032A40 [NONAME]
       2716      00032B00 [NONAME]
 
  Summary
 
        2000 .data
        1000 .didat
        7000 .pdata
       20000 .rdata
        1000 .reloc
       E2000 .rsrc
       86000 .text

 

Publicado el día 2 de febrero de 2020

CATEGORÍAS

PowerShell

ETIQUETAS

2008, 2016, AD, Análisis, Contains, data, Date, dc, dd, df, DUMPBIN, ed, Jesús Niño, Jesús Niño Camazón, Microsoft, mouse_event, MoveWindow, Studio, Time, user32.dll, Visual, Windows

MÁS

  • Ejercicios de PowerShell: explica un procedimiento de copias de seguridad que te parezca lo más óptimo posible
  • Ejercicios de seguridad: práctica sobre virus
  • Obtener los nombres de las funciones exportadas de un archivo DLL con DUMPBIN desde PowerShell (explicación paso a paso del script)
  • Función mouse_event del archivo DLL user32.dll
  • Ejercicios de PowerShell: ejercicios con fechas
  • Listar los nombres de los ficheros DLL que hay en System32 con PowerShell