-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathborgexp.dat
3490 lines (3484 loc) · 71.2 KB
/
borgexp.dat
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
!WSOCK32.dll
475 AcceptEx
3eb Arecv
3ec Asend
457 EnumProtocolsA
458 EnumProtocolsW
476 GetAcceptExSockaddrs
455 GetAddressByNameA
456 GetAddressByNameW
45b GetNameByTypeA
45c GetNameByTypeW
45f GetServiceA
460 GetServiceW
459 GetTypeByNameA
45a GetTypeByNameW
18 MigrateWinsockConfiguration
46a NPLoadNameSpaces
46b NSPStartup
45d SetServiceA
45e SetServiceW
474 TransmitFile
1f4 WEP
66 WSAAsyncGetHostByAddr
67 WSAAsyncGetHostByName
69 WSAAsyncGetProtoByName
68 WSAAsyncGetProtoByNumber
6b WSAAsyncGetServByName
6a WSAAsyncGetServByPort
65 WSAAsyncSelect
6c WSACancelAsyncRequest
71 WSACancelBlockingCall
74 WSACleanup
6f WSAGetLastError
72 WSAIsBlocking
453 WSARecvEx
6d WSASetBlockingHook
70 WSASetLastError
73 WSAStartup
6e WSAUnhookBlockingHook
3e8 WSApSetPostRoutine
3ed WSHEnumProtocols
3e9 WsControl
97 __WSAFDIsSet
1 accept
2 bind
3 closesocket
3ea closesockinfo
4 connect
452 dn_expand
33 gethostbyaddr
34 gethostbyname
39 gethostname
44d getnetbyname
5 getpeername
35 getprotobyname
36 getprotobynumber
37 getservbyname
38 getservbyport
6 getsockname
7 getsockopt
8 htonl
9 htons
a inet_addr
44c inet_network
b inet_ntoa
c ioctlsocket
d listen
e ntohl
f ntohs
44e rcmd
10 recv
11 recvfrom
44f rexec
450 rresvport
454 s_perror
12 select
13 send
14 sendto
451 sethostname
15 setsockopt
16 shutdown
17 socket
!SHLWAPI.dll
a2 ChrCmpIA
a3 ChrCmpIW
a4 DllGetVersion
a5 GetMenuPosFromID
a6 HashData
a7 IntlStrEqWorkerA
a8 IntlStrEqWorkerW
a9 PathAddBackslashA
aa PathAddBackslashW
ab PathAddExtensionA
ac PathAddExtensionW
ad PathAppendA
ae PathAppendW
af PathBuildRootA
b0 PathBuildRootW
b1 PathCanonicalizeA
b2 PathCanonicalizeW
b3 PathCombineA
b4 PathCombineW
b5 PathCommonPrefixA
b6 PathCommonPrefixW
b7 PathCompactPathA
b8 PathCompactPathExA
b9 PathCompactPathExW
ba PathCompactPathW
bb PathCreateFromUrlA
bc PathCreateFromUrlW
bd PathFileExistsA
be PathFileExistsW
bf PathFindExtensionA
c0 PathFindExtensionW
c1 PathFindFileNameA
c2 PathFindFileNameW
c3 PathFindNextComponentA
c4 PathFindNextComponentW
c5 PathFindOnPathA
c6 PathFindOnPathW
c7 PathGetArgsA
c8 PathGetArgsW
c9 PathGetCharTypeA
ca PathGetCharTypeW
cb PathGetDriveNumberA
cc PathGetDriveNumberW
cd PathIsContentTypeA
ce PathIsContentTypeW
cf PathIsDirectoryA
d0 PathIsDirectoryW
d1 PathIsFileSpecA
d2 PathIsFileSpecW
d3 PathIsPrefixA
d4 PathIsPrefixW
d5 PathIsRelativeA
d6 PathIsRelativeW
d7 PathIsRootA
d8 PathIsRootW
d9 PathIsSameRootA
da PathIsSameRootW
db PathIsSystemFolderA
dc PathIsSystemFolderW
dd PathIsUNCA
de PathIsUNCServerA
df PathIsUNCServerShareA
e0 PathIsUNCServerShareW
e1 PathIsUNCServerW
e2 PathIsUNCW
e3 PathIsURLA
e4 PathIsURLW
e5 PathMakePrettyA
e6 PathMakePrettyW
e7 PathMakeSystemFolderA
e8 PathMakeSystemFolderW
e9 PathMatchSpecA
ea PathMatchSpecW
eb PathParseIconLocationA
ec PathParseIconLocationW
ed PathQuoteSpacesA
ee PathQuoteSpacesW
ef PathRelativePathToA
f0 PathRelativePathToW
f1 PathRemoveArgsA
f2 PathRemoveArgsW
f3 PathRemoveBackslashA
f4 PathRemoveBackslashW
f5 PathRemoveBlanksA
f6 PathRemoveBlanksW
f7 PathRemoveExtensionA
f8 PathRemoveExtensionW
f9 PathRemoveFileSpecA
fa PathRemoveFileSpecW
fb PathRenameExtensionA
fc PathRenameExtensionW
fd PathSearchAndQualifyA
fe PathSearchAndQualifyW
ff PathSetDlgItemPathA
100 PathSetDlgItemPathW
101 PathSkipRootA
102 PathSkipRootW
103 PathStripPathA
104 PathStripPathW
105 PathStripToRootA
106 PathStripToRootW
107 PathUnmakeSystemFolderA
108 PathUnmakeSystemFolderW
109 PathUnquoteSpacesA
10a PathUnquoteSpacesW
10b SHCreateShellPalette
10c SHDeleteEmptyKeyA
10d SHDeleteEmptyKeyW
10e SHDeleteKeyA
10f SHDeleteKeyW
110 SHDeleteOrphanKeyA
111 SHDeleteOrphanKeyW
112 SHDeleteValueA
113 SHDeleteValueW
114 SHEnumKeyExA
115 SHEnumKeyExW
116 SHEnumValueA
117 SHEnumValueW
118 SHGetInverseCMAP
119 SHGetValueA
11a SHGetValueW
11b SHIsLowMemoryMachine
11c SHOpenRegStreamA
11d SHOpenRegStreamW
11e SHQueryInfoKeyA
11f SHQueryInfoKeyW
120 SHQueryValueExA
121 SHQueryValueExW
122 SHRegCloseUSKey
123 SHRegCreateUSKeyA
124 SHRegCreateUSKeyW
125 SHRegDeleteEmptyUSKeyA
126 SHRegDeleteEmptyUSKeyW
127 SHRegDeleteUSValueA
128 SHRegDeleteUSValueW
129 SHRegEnumUSKeyA
12a SHRegEnumUSKeyW
12b SHRegEnumUSValueA
12c SHRegEnumUSValueW
12d SHRegGetBoolUSValueA
12e SHRegGetBoolUSValueW
12f SHRegGetUSValueA
130 SHRegGetUSValueW
131 SHRegOpenUSKeyA
132 SHRegOpenUSKeyW
133 SHRegQueryInfoUSKeyA
134 SHRegQueryInfoUSKeyW
135 SHRegQueryUSValueA
136 SHRegQueryUSValueW
137 SHRegSetUSValueA
138 SHRegSetUSValueW
139 SHRegWriteUSValueA
13a SHRegWriteUSValueW
13b SHSetValueA
13c SHSetValueW
13d StrCSpnA
13e StrCSpnIA
13f StrCSpnIW
140 StrCSpnW
141 StrCatW
142 StrChrA
143 StrChrIA
144 StrChrIW
145 StrChrW
146 StrCmpIW
147 StrCmpNA
148 StrCmpNIA
149 StrCmpNIW
14a StrCmpNW
14b StrCmpW
14c StrCpyNW
14d StrCpyW
14e StrDupA
14f StrDupW
150 StrFormatByteSizeA
151 StrFormatByteSizeW
152 StrFromTimeIntervalA
153 StrFromTimeIntervalW
154 StrIsIntlEqualA
155 StrIsIntlEqualW
156 StrNCatA
157 StrNCatW
158 StrPBrkA
159 StrPBrkW
15a StrRChrA
15b StrRChrIA
15c StrRChrIW
15d StrRChrW
15e StrRStrIA
15f StrRStrIW
160 StrSpnA
161 StrSpnW
162 StrStrA
163 StrStrIA
164 StrStrIW
165 StrStrW
166 StrToIntA
167 StrToIntExA
168 StrToIntExW
169 StrToIntW
16a StrTrimA
16b StrTrimW
16c UrlApplySchemeA
16d UrlApplySchemeW
16e UrlCanonicalizeA
16f UrlCanonicalizeW
170 UrlCombineA
171 UrlCombineW
172 UrlCompareA
173 UrlCompareW
174 UrlCreateFromPathA
175 UrlCreateFromPathW
176 UrlEscapeA
177 UrlEscapeW
178 UrlGetLocationA
179 UrlGetLocationW
17a UrlGetPartA
17b UrlGetPartW
17c UrlHashA
17d UrlHashW
17e UrlIsA
17f UrlIsNoHistoryA
180 UrlIsNoHistoryW
181 UrlIsOpaqueA
182 UrlIsOpaqueW
183 UrlIsW
184 UrlUnescapeA
185 UrlUnescapeW
!COMCTL32.dll
b Cctl1632_ThunkData32
7 CreateMappedBitmap
11 CreatePropertySheetPage
12 CreatePropertySheetPageA
13 CreatePropertySheetPageW
14 CreateStatusWindow
5 CreateStatusWindowA
15 CreateStatusWindowW
6 CreateToolbar
16 CreateToolbarEx
f CreateUpDownControl
17 DestroyPropertySheetPage
18 DllGetVersion
19 DllInstall
e DrawInsert
1a DrawStatusText
4 DrawStatusTextA
1b DrawStatusTextW
1c FlatSB_EnableScrollBar
1d FlatSB_GetScrollInfo
1e FlatSB_GetScrollPos
1f FlatSB_GetScrollProp
20 FlatSB_GetScrollRange
21 FlatSB_SetScrollInfo
22 FlatSB_SetScrollPos
23 FlatSB_SetScrollProp
24 FlatSB_SetScrollRange
25 FlatSB_ShowScrollBar
3 GetEffectiveClientRect
26 ImageList_Add
27 ImageList_AddIcon
28 ImageList_AddMasked
29 ImageList_BeginDrag
2a ImageList_Copy
2b ImageList_Create
2c ImageList_Destroy
2d ImageList_DragEnter
2e ImageList_DragLeave
2f ImageList_DragMove
30 ImageList_DragShowNolock
31 ImageList_Draw
32 ImageList_DrawEx
33 ImageList_DrawIndirect
34 ImageList_Duplicate
35 ImageList_EndDrag
36 ImageList_GetBkColor
37 ImageList_GetDragImage
38 ImageList_GetIcon
39 ImageList_GetIconSize
3a ImageList_GetImageCount
3b ImageList_GetImageInfo
3c ImageList_GetImageRect
3d ImageList_LoadImage
3e ImageList_LoadImageA
3f ImageList_LoadImageW
40 ImageList_Merge
41 ImageList_Read
42 ImageList_Remove
43 ImageList_Replace
44 ImageList_ReplaceIcon
45 ImageList_SetBkColor
4a ImageList_SetDragCursorImage
4b ImageList_SetFilter
4c ImageList_SetIconSize
4d ImageList_SetImageCount
4e ImageList_SetOverlayImage
4f ImageList_Write
10 InitCommonControls
50 InitCommonControlsEx
51 InitializeFlatSB
d LBItemFromPt
c MakeDragList
1 MenuHelp
52 PropertySheet
53 PropertySheetA
54 PropertySheetW
2 ShowHideMenuCtl
55 UninitializeFlatSB
56 _TrackMouseEvent
!USER32.dll
1 ActivateKeyboardLayout
2 AdjustWindowRect
3 AdjustWindowRectEx
4 AlignRects
5 AnimateWindow
6 AnyPopup
7 AppendMenuA
8 AppendMenuW
9 ArrangeIconicWindows
a AttachThreadInput
b BeginDeferWindowPos
c BeginPaint
d BlockInput
e BringWindowToTop
f BroadcastSystemMessage
10 BroadcastSystemMessageA
11 BroadcastSystemMessageW
12 CalcChildScroll
13 CallMsgFilter
14 CallMsgFilterA
15 CallMsgFilterW
16 CallNextHookEx
17 CallWindowProcA
18 CallWindowProcW
19 CascadeChildWindows
1a CascadeWindows
1b ChangeClipboardChain
1c ChangeDisplaySettingsA
1d ChangeDisplaySettingsExA
1e ChangeDisplaySettingsExW
1f ChangeDisplaySettingsW
20 ChangeMenuA
21 ChangeMenuW
22 CharLowerA
23 CharLowerBuffA
24 CharLowerBuffW
25 CharLowerW
26 CharNextA
27 CharNextExA
28 CharNextExW
29 CharNextW
2a CharPrevA
2b CharPrevExA
2c CharPrevExW
2d CharPrevW
2e CharToOemA
2f CharToOemBuffA
30 CharToOemBuffW
31 CharToOemW
32 CharUpperA
33 CharUpperBuffA
34 CharUpperBuffW
35 CharUpperW
36 CheckDlgButton
37 CheckMenuItem
38 CheckMenuRadioItem
39 CheckRadioButton
3a ChildWindowFromPoint
3b ChildWindowFromPointEx
3c ClientThreadConnect
3d ClientToScreen
3e ClipCursor
3f CloseClipboard
40 CloseDesktop
41 CloseWindow
42 CloseWindowStation
43 CopyAcceleratorTableA
44 CopyAcceleratorTableW
45 CopyIcon
46 CopyImage
47 CopyRect
48 CountClipboardFormats
49 CreateAcceleratorTableA
4a CreateAcceleratorTableW
4b CreateCaret
4c CreateCursor
4d CreateDesktopA
4e CreateDesktopW
4f CreateDialogIndirectParamA
50 CreateDialogIndirectParamW
51 CreateDialogParamA
52 CreateDialogParamW
53 CreateIcon
54 CreateIconFromResource
55 CreateIconFromResourceEx
56 CreateIconIndirect
57 CreateMDIWindowA
58 CreateMDIWindowW
59 CreateMenu
5a CreatePopupMenu
5b CreateWindowExA
5c CreateWindowExW
5d CreateWindowStationA
5e CreateWindowStationW
5f DdeAbandonTransaction
60 DdeAccessData
61 DdeAddData
62 DdeClientTransaction
63 DdeCmpStringHandles
64 DdeConnect
65 DdeConnectList
66 DdeCreateDataHandle
67 DdeCreateStringHandleA
68 DdeCreateStringHandleW
69 DdeDisconnect
6a DdeDisconnectList
6b DdeEnableCallback
6c DdeFreeDataHandle
6d DdeFreeStringHandle
6e DdeGetData
6f DdeGetLastError
70 DdeImpersonateClient
71 DdeInitializeA
72 DdeInitializeW
73 DdeKeepStringHandle
74 DdeNameService
75 DdePostAdvise
76 DdeQueryConvInfo
77 DdeQueryNextServer
78 DdeQueryStringA
79 DdeQueryStringW
7a DdeReconnect
7b DdeSetQualityOfService
7c DdeSetUserHandle
7d DdeUnaccessData
7e DdeUninitialize
7f DefDlgProcA
80 DefDlgProcW
81 DefFrameProcA
82 DefFrameProcW
83 DefMDIChildProcA
84 DefMDIChildProcW
85 DefWindowProcA
86 DefWindowProcW
87 DeferWindowPos
88 DeleteMenu
89 DestroyAcceleratorTable
8a DestroyCaret
8b DestroyCursor
8c DestroyIcon
8d DestroyMenu
8e DestroyWindow
8f DialogBoxIndirectParamA
90 DialogBoxIndirectParamW
91 DialogBoxParamA
92 DialogBoxParamW
93 DispatchMessageA
94 DispatchMessageW
95 DlgDirListA
96 DlgDirListComboBoxA
97 DlgDirListComboBoxW
98 DlgDirListW
99 DlgDirSelectComboBoxExA
9a DlgDirSelectComboBoxExW
9b DlgDirSelectExA
9c DlgDirSelectExW
9d DragDetect
9e DragObject
9f DrawAnimatedRects
a0 DrawCaption
a1 DrawCaptionTempA
a2 DrawCaptionTempW
a3 DrawEdge
a4 DrawFocusRect
a5 DrawFrame
a6 DrawFrameControl
a7 DrawIcon
a8 DrawIconEx
a9 DrawMenuBar
aa DrawMenuBarTemp
ab DrawStateA
ac DrawStateW
ad DrawTextA
ae DrawTextExA
af DrawTextExW
b0 DrawTextW
b1 EditWndProc
b2 EmptyClipboard
b3 EnableMenuItem
b4 EnableScrollBar
b5 EnableWindow
b6 EndDeferWindowPos
b7 EndDialog
b8 EndMenu
b9 EndPaint
ba EndTask
bb EnumChildWindows
bc EnumClipboardFormats
bd EnumDesktopWindows
be EnumDesktopsA
bf EnumDesktopsW
c0 EnumDisplayDevicesA
c1 EnumDisplayDevicesW
c2 EnumDisplayMonitors
c3 EnumDisplaySettingsA
c4 EnumDisplaySettingsExA
c5 EnumDisplaySettingsExW
c6 EnumDisplaySettingsW
c7 EnumPropsA
c8 EnumPropsExA
c9 EnumPropsExW
ca EnumPropsW
cb EnumThreadWindows
cc EnumWindowStationsA
cd EnumWindowStationsW
ce EnumWindows
cf EqualRect
d0 ExcludeUpdateRgn
d1 ExitWindowsEx
d2 FillRect
d3 FindWindowA
d4 FindWindowExA
d5 FindWindowExW
d6 FindWindowW
d7 FlashWindow
d8 FlashWindowEx
d9 FrameRect
da FreeDDElParam
db GetActiveWindow
dc GetAltTabInfo
dd GetAncestor
de GetAsyncKeyState
df GetCapture
e0 GetCaretBlinkTime
e1 GetCaretPos
e2 GetClassInfoA
e3 GetClassInfoExA
e4 GetClassInfoExW
e5 GetClassInfoW
e6 GetClassLongA
e7 GetClassLongW
e8 GetClassNameA
e9 GetClassNameW
ea GetClassWord
eb GetClientRect
ec GetClipCursor
ed GetClipboardData
ee GetClipboardFormatNameA
ef GetClipboardFormatNameW
f0 GetClipboardOwner
f1 GetClipboardSequenceNumber
f2 GetClipboardViewer
f3 GetComboBoxInfo
f4 GetCursor
f5 GetCursorInfo
f6 GetCursorPos
f7 GetDC
f8 GetDCEx
f9 GetDesktopWindow
fa GetDialogBaseUnits
fb GetDlgCtrlID
fc GetDlgItem
fd GetDlgItemInt
fe GetDlgItemTextA
ff GetDlgItemTextW
100 GetDoubleClickTime
101 GetFocus
102 GetForegroundWindow
103 GetGUIThreadInfo
104 GetGuiResources
105 GetIconInfo
106 GetInputDesktop
107 GetInputState
108 GetInternalWindowPos
109 GetKBCodePage
10a GetKeyNameTextA
10b GetKeyNameTextW
10c GetKeyState
10d GetKeyboardLayout
10e GetKeyboardLayoutList
10f GetKeyboardLayoutNameA
110 GetKeyboardLayoutNameW
111 GetKeyboardState
112 GetKeyboardType
113 GetLastActivePopup
114 GetListBoxInfo
115 GetMenu
116 GetMenuBarInfo
117 GetMenuCheckMarkDimensions
118 GetMenuContextHelpId
119 GetMenuDefaultItem
11a GetMenuInfo
11b GetMenuItemCount
11c GetMenuItemID
11d GetMenuItemInfoA
11e GetMenuItemInfoW
11f GetMenuItemRect
120 GetMenuState
121 GetMenuStringA
122 GetMenuStringW
123 GetMessageA
124 GetMessageExtraInfo
125 GetMessagePos
126 GetMessageTime
127 GetMessageW
128 GetMonitorInfoA
129 GetMonitorInfoW
12a GetMouseMovePoints
12b GetNextDlgGroupItem
12c GetNextDlgTabItem
12d GetNextQueueWindow
12e GetOpenClipboardWindow
12f GetParent
130 GetPriorityClipboardFormat
131 GetProcessDefaultLayout
132 GetProcessWindowStation
133 GetPropA
134 GetPropW
135 GetQueueStatus
136 GetScrollBarInfo
137 GetScrollInfo
138 GetScrollPos
139 GetScrollRange
13a GetShellWindow
13b GetSubMenu
13c GetSysColor
13d GetSysColorBrush
13e GetSystemMenu
13f GetSystemMetrics
140 GetTabbedTextExtentA
141 GetTabbedTextExtentW
142 GetThreadDesktop
143 GetTitleBarInfo
144 GetTopWindow
145 GetUpdateRect
146 GetUpdateRgn
147 GetUserObjectInformationA
148 GetUserObjectInformationW
149 GetUserObjectSecurity
14a GetWindow
14b GetWindowContextHelpId
14c GetWindowDC
14d GetWindowInfo
14e GetWindowLongA
14f GetWindowLongW
150 GetWindowModuleFileNameA
151 GetWindowModuleFileNameW
152 GetWindowPlacement
153 GetWindowRect
154 GetWindowRgn
155 GetWindowTextA
156 GetWindowTextLengthA
157 GetWindowTextLengthW
158 GetWindowTextW
159 GetWindowThreadProcessId
15a GetWindowWord
15b GrayStringA
15c GrayStringW
15d HasSystemSleepStarted
15e HideCaret
15f HiliteMenuItem
160 IMPGetIMEA
161 IMPGetIMEW
162 IMPQueryIMEA
163 IMPQueryIMEW
164 IMPSetIMEA
165 IMPSetIMEW
166 ImpersonateDdeClientWindow
167 InSendMessage
168 InSendMessageEx
169 InflateRect
16a InitSharedTable
16b InitTask
16c InsertMenuA
16d InsertMenuItemA
16e InsertMenuItemW
16f InsertMenuW
170 InternalGetWindowText
171 IntersectRect
172 InvalidateRect
173 InvalidateRgn
174 InvertRect
175 IsCharAlphaA
176 IsCharAlphaNumericA
177 IsCharAlphaNumericW
178 IsCharAlphaW
179 IsCharLowerA
17a IsCharLowerW
17b IsCharUpperA
17c IsCharUpperW
17d IsChild
17e IsClipboardFormatAvailable
17f IsDialogMessage
180 IsDialogMessageA
181 IsDialogMessageW
182 IsDlgButtonChecked
183 IsHungThread
184 IsIconic
185 IsMenu
186 IsRectEmpty
187 IsWindow
188 IsWindowEnabled
189 IsWindowUnicode
18a IsWindowVisible
18b IsZoomed
18c KillTimer
18d LoadAcceleratorsA
18e LoadAcceleratorsW
18f LoadBitmapA
190 LoadBitmapW
191 LoadCursorA
192 LoadCursorFromFileA
193 LoadCursorFromFileW
194 LoadCursorW
195 LoadIconA
196 LoadIconW
197 LoadImageA
198 LoadImageW
199 LoadKeyboardLayoutA
19a LoadKeyboardLayoutW
19b LoadMenuA
19c LoadMenuIndirectA
19d LoadMenuIndirectW
19e LoadMenuW
19f LoadStringA
1a0 LoadStringW
1a1 LockWindowStation
1a2 LockWindowUpdate
1a3 LookupIconIdFromDirectory
1a4 LookupIconIdFromDirectoryEx
1a5 MapDialogRect
1a6 MapVirtualKeyA
1a7 MapVirtualKeyExA
1a8 MapVirtualKeyExW
1a9 MapVirtualKeyW
1aa MapWindowPoints
1ab MenuItemFromPoint
1ac MessageBeep
1ad MessageBoxA
1ae MessageBoxExA
1af MessageBoxExW
1b0 MessageBoxIndirectA
1b1 MessageBoxIndirectW
1b2 MessageBoxW
1b3 ModifyAccess
1b4 ModifyMenuA
1b5 ModifyMenuW
1b6 MonitorFromPoint
1b7 MonitorFromRect
1b8 MonitorFromWindow
1b9 MoveWindow
1ba MsgWaitForMultipleObjects
1bb MsgWaitForMultipleObjectsEx
1bc NotifyWinEvent
1bd OemKeyScan
1be OemToCharA
1bf OemToCharBuffA
1c0 OemToCharBuffW
1c1 OemToCharW
1c2 OffsetRect
1c3 OpenClipboard
1c4 OpenDesktopA
1c5 OpenDesktopW
1c6 OpenIcon
1c7 OpenInputDesktop
1c8 OpenWindowStationA
1c9 OpenWindowStationW
1ca PackDDElParam
1cb PaintDesktop
1cc PeekMessageA
1cd PeekMessageW
1ce PlaySoundEvent
1cf PostMessageA
1d0 PostMessageW
1d1 PostQuitMessage
1d2 PostThreadMessageA
1d3 PostThreadMessageW
1d4 PtInRect
1d5 RealChildWindowFromPoint
1d6 RealGetWindowClass
1d7 RedrawWindow
1d8 RegisterClassA
1d9 RegisterClassExA
1da RegisterClassExW
1db RegisterClassW
1dc RegisterClipboardFormatA
1dd RegisterClipboardFormatW
1de RegisterDeviceNotificationA
1df RegisterDeviceNotificationW
1e0 RegisterHotKey
1e1 RegisterLogonProcess
1e2 RegisterNetworkCapabilities
1e3 RegisterSystemThread
1e4 RegisterTasklist
1e5 RegisterWindowMessageA
1e6 RegisterWindowMessageW
1e7 ReleaseCapture
1e8 ReleaseDC
1e9 RemoveMenu
1ea RemovePropA
1eb RemovePropW
1ec ReplyMessage
1ed ReuseDDElParam
1ee ScreenToClient
1ef ScrollDC
1f0 ScrollWindow
1f1 ScrollWindowEx
1f2 SendDlgItemMessageA
1f3 SendDlgItemMessageW
1f4 SendIMEMessageExA
1f5 SendIMEMessageExW
1f6 SendInput
1f7 SendMessageA
1f8 SendMessageCallbackA
1f9 SendMessageCallbackW
1fa SendMessageTimeoutA
1fb SendMessageTimeoutW
1fc SendMessageW
1fd SendNotifyMessageA
1fe SendNotifyMessageW
1ff SetActiveWindow
200 SetCapture
201 SetCaretBlinkTime
202 SetCaretPos
203 SetClassLongA
204 SetClassLongW
205 SetClassWord
206 SetClipboardData
207 SetClipboardViewer
208 SetCursor
209 SetCursorPos
20a SetDebugErrorLevel
20b SetDeskWallpaper
20c SetDesktopBitmap
20d SetDlgItemInt
20e SetDlgItemTextA
20f SetDlgItemTextW
210 SetDoubleClickTime
211 SetFocus
212 SetForegroundWindow
213 SetInternalWindowPos
214 SetKeyboardState
215 SetLastErrorEx
216 SetLogonNotifyWindow
217 SetMenu
218 SetMenuContextHelpId
219 SetMenuDefaultItem
21a SetMenuInfo
21b SetMenuItemBitmaps
21c SetMenuItemInfoA
21d SetMenuItemInfoW
21e SetMessageExtraInfo
21f SetMessageQueue
220 SetParent
221 SetProcessDefaultLayout
222 SetProcessWindowStation
223 SetPropA
224 SetPropW
225 SetRect
226 SetRectEmpty
227 SetScrollInfo
228 SetScrollPos
229 SetScrollRange
22a SetShellWindow
22b SetSysColors
22c SetSysColorsTemp
22d SetSystemCursor
22e SetThreadDesktop
22f SetTimer
230 SetUserObjectInformationA
231 SetUserObjectInformationW
232 SetUserObjectSecurity
233 SetWinEventHook
234 SetWindowContextHelpId
235 SetWindowFullScreenState
236 SetWindowLongA
237 SetWindowLongW
238 SetWindowPlacement
239 SetWindowPos
23a SetWindowRgn
23b SetWindowTextA
23c SetWindowTextW
23d SetWindowWord
23e SetWindowsHookA
23f SetWindowsHookExA
240 SetWindowsHookExW
241 SetWindowsHookW
242 ShowCaret
243 ShowCursor
244 ShowOwnedPopups
245 ShowScrollBar
246 ShowWindow
247 ShowWindowAsync
248 SubtractRect
249 SwapMouseButton
24a SwitchDesktop
24b SwitchToThisWindow
24c SysErrorBox
24d SystemParametersInfoA
24e SystemParametersInfoW
24f TabbedTextOutA
250 TabbedTextOutW
251 TileChildWindows
252 TileWindows
253 ToAscii
254 ToAsciiEx
255 ToUnicode
256 ToUnicodeEx
257 TrackMouseEvent
258 TrackPopupMenu
259 TrackPopupMenuEx
25a TranslateAccelerator
25b TranslateAcceleratorA
25c TranslateAcceleratorW
25d TranslateMDISysAccel
25e TranslateMessage
25f UnhookWinEvent
260 UnhookWindowsHook