-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvista.api
961 lines (961 loc) · 20.7 KB
/
vista.api
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
EditSecurityAdvanced
TreeSetNamedSecurityInfoA
TreeSetNamedSecurityInfoW
EventAccessControl
EventAccessQuery
EventAccessRemove
EventActivityIdControl
EventEnabled
EventProviderEnabled
EventRegister
EnableTrace
EnableTraceEx
EnumerateTraceGuids
EnumerateTraceGuidsEx
FlushTraceA
FlushTraceW
GetTraceEnableFlags
GetTraceEnableLevel
GetTraceLoggerHandle
QueryAllTracesA
QueryAllTracesW
QueryTraceA
QueryTraceW
StartTraceA
StartTraceW
StopTraceA
AuditComputeEffectivePolicyBySid
AuditComputeEffectivePolicyByToken
AuditEnumerateCategories
AuditEnumeratePerUserPolicy
AuditEnumerateSubCategories
AuditFree
AuditLookupCategoryGuidFromCategoryId
AuditLookupCategoryIdFromCategoryGuid
AuditLookupCategoryNameA
AuditLookupCategoryNameW
AuditLookupSubCategoryNameA
AuditLookupSubCategoryNameW
AuditQueryPerUserPolicy
AuditQuerySecurity
AuditQuerySystemPolicy
AuditSetPerUserPolicy
AuditSetSecurity
AuditSetSystemPolicy
PerfCreateInstance
PerfDecrementULongCounterValue
PerfDecrementULongLongCounterValue
PerfDeleteInstance
PerfIncrementULongCounterValue
PerfIncrementULongLongCounterValue
PerfQueryInstance
PerfSetCounterRefValue
PerfSetCounterSetInfo
PerfSetULongCounterValue
PerfSetULongLongCounterValue
PerfStartProvider
PerfStartProviderEx
PerfStopProvider
CloseThreadWaitChainSession
GetThreadWaitChain
OpenThreadWaitChainSession
RegisterWaitChainCOMCallback
AddMandatoryAce
IsValidRelativeSecurityDescriptor
QuerySecurityAccessMask
SetSecurityAccessMask
CredFindBestCredentialA
CredFindBestCredentialW
CredIsProtectedA
CredIsProtectedW
CredProtectA
CredProtectW
CredUnprotectA
CredUnprotectW
FreeEncryptedFileMetadata
GetEncryptedFileMetadata
SetEncryptedFileMetadata
SetUserFileEncryptionKeyEx
InitiateShutdownA
InitiateShutdownW
RegCopyTreeA
RegCopyTreeW
RegCreateKeyTransactedA
RegCreateKeyTransactedW
RegDeleteKeyTransactedA
RegDeleteKeyTransactedW
RegDeleteKeyValueA
RegDeleteKeyValueW
RegDeleteTreeA
RegDeleteTreeW
RegDisablePredefinedCacheEx
RegLoadAppKeyA
RegLoadAppKeyW
RegLoadMUIStringA
RegLoadMUIStringW
RegOpenKeyTransactedA
RegOpenKeyTransactedW
RegSetKeyValueA
RegSetKeyValueW
ControlServiceExA
ControlServiceExW
NotifyServiceStatusChangeA
NotifyServiceStatusChangeW
AuthzEvaluateSacl
AddClusterNode
ClusterRegCloseBatch
ClusterRegCreateBatch
CreateCluster
DestroyCluster
GetClusterResourceDependencyExpression
SetClusterResourceDependencyExpression
DPA_Clone
DPA_CreateEx
DPA_GetPtrIndex
DPA_Grow
DPA_LoadStream
DPA_Merge
DPA_SaveStream
DSA_DeleteItem
DSA_EnumCallback
DSA_GetItem
DSA_SetItem
CredPackAuthenticationBufferA
CredPackAuthenticationBufferW
CredUIPromptForWindowsCredentialsA
CredUIPromptForWindowsCredentialsW
CredUnPackAuthenticationBufferA
CredUnPackAuthenticationBufferW
CertAddRefServerOcspResponse
CertAddRefServerOcspResponseContext
CertCloseServerOcspResponse
CertFreeServerOcspResponseContext
CertGetServerOcspResponseContext
CertOpenServerOcspResponse
CertRetrieveLogoOrBiometricInfo
CryptHashCertificate2
CryptImportPublicKeyInfoEx2
CryptUpdateProtectedState
DebugConnectWide
EnumDirTree
EnumDirTreeW
EnumerateLoadedModulesW64
FindDebugInfoFileExW
FindExecutableImageExW
SearchTreeForFileW
SymAddSymbolW
SymDeleteSymbolW
SymEnumerateModulesW64
SymEnumLinesW
SymEnumProcesses
SymEnumSourceFilesW
SymEnumSourceLines
SymEnumSourceLinesW
SymEnumSymbolsForAddrW
SymEnumSymbolsW
SymEnumTypesW
SymFindDebugInfoFile
SymFindDebugInfoFileW
SymFindExecutableImage
SymFindExecutableImageW
SymFindFileInPathW
SymFromAddrW
SymFromIndex
SymFromIndexW
SymFromNameW
SymFromTokenW
SymGetHomeDirectoryW
SymGetLineFromAddrW64
SymGetLineFromNameW64
SymGetLineNextW64
SymGetLinePrevW64
SymGetScope
SymGetScopeW
SymGetSearchPathW
SymGetSourceFile
SymGetSourceFileFromToken
SymGetSourceFileFromTokenW
SymGetSourceFileToken
SymGetSourceFileTokenW
SymGetSourceFileW
SymGetSourceVarFromToken
SymGetSourceVarFromTokenW
SymGetSymbolFile
SymGetSymbolFileW
SymGetTypeFromNameW
SymGetTypeInfoEx
SymInitializeW
SymLoadModuleExW
SymMatchFileNameW
SymMatchStringA
SymMatchStringW
SymNext
SymNextW
SymPrev
SymPrevW
SymRefreshModuleList
SymRegisterCallbackW64
SymSearch
SymSearchW
SymSetHomeDirectoryW
SymSetSearchPathW
SymSrvDeltaName
SymSrvDeltaNameW
SymSrvGetFileIndexes
SymSrvGetFileIndexesW
SymSrvGetFileIndexInfo
SymSrvGetFileIndexInfoW
SymSrvGetFileIndexString
SymSrvGetFileIndexStringW
SymSrvGetSupplement
SymSrvGetSupplementW
SymSrvIsStore
SymSrvIsStoreW
SymSrvStoreFile
SymSrvStoreFileW
SymSrvStoreSupplement
SymSrvStoreSupplementW
UnDecorateSymbolNameW
JetAddColumnA
JetAddColumnW
JetAttachDatabase2A
JetAttachDatabase2W
JetAttachDatabaseA
JetAttachDatabaseW
JetBackupA
JetBackupInstanceA
JetBackupInstanceW
JetBackupW
JetBeginSessionA
JetBeginSessionW
JetCompactA
JetCompactW
JetCreateDatabase2A
JetCreateDatabase2W
JetCreateDatabaseA
JetCreateDatabaseW
JetCreateIndex2A
JetCreateIndex2W
JetCreateIndexA
JetCreateIndexW
JetCreateInstance2A
JetCreateInstance2W
JetCreateInstanceA
JetCreateInstanceW
JetCreateTableA
JetCreateTableColumnIndex2A
JetCreateTableColumnIndex2W
JetCreateTableColumnIndexA
JetCreateTableColumnIndexW
JetCreateTableW
JetDefragment2A
JetDefragment2W
JetDefragment3A
JetDefragment3W
JetDefragmentA
JetDefragmentW
JetDeleteColumn2A
JetDeleteColumn2W
JetDeleteColumnA
JetDeleteColumnW
JetDeleteIndexA
JetDeleteIndexW
JetDeleteTableA
JetDeleteTableW
JetDetachDatabase2A
JetDetachDatabase2W
JetDetachDatabaseA
JetDetachDatabaseW
JetEnableMultiInstanceA
JetEnableMultiInstanceW
JetExternalRestore2A
JetExternalRestore2W
JetExternalRestoreA
JetExternalRestoreW
JetGetAttachInfoA
JetGetAttachInfoInstanceA
JetGetAttachInfoInstanceW
JetGetAttachInfoW
JetGetColumnInfoA
JetGetColumnInfoW
JetGetCurrentIndexA
JetGetCurrentIndexW
JetGetDatabaseFileInfoA
JetGetDatabaseFileInfoW
JetGetDatabaseInfoA
JetGetDatabaseInfoW
JetGetIndexInfoA
JetGetIndexInfoW
JetGetInstanceInfoA
JetGetInstanceInfoW
JetGetInstanceMiscInfo
JetGetLogInfoA
JetGetLogInfoInstance2A
JetGetLogInfoInstance2W
JetGetLogInfoInstanceA
JetGetLogInfoInstanceW
JetGetLogInfoW
JetGetObjectInfoA
JetGetObjectInfoW
JetGetRecordSize
JetGetSystemParameterA
JetGetSystemParameterW
JetGetTableColumnInfoA
JetGetTableColumnInfoW
JetGetTableIndexInfoA
JetGetTableIndexInfoW
JetGetTableInfoA
JetGetTableInfoW
JetGetThreadStats
JetGetTruncateLogInfoInstanceA
JetGetTruncateLogInfoInstanceW
JetInit3A
JetInit3W
JetOpenDatabaseA
JetOpenDatabaseW
JetOpenFileA
JetOpenFileInstanceA
JetOpenFileInstanceW
JetOpenFileW
JetOpenTableA
JetOpenTableW
JetOpenTemporaryTable
JetOSSnapshotEnd
JetOSSnapshotFreezeA
JetOSSnapshotFreezeW
JetOSSnapshotGetFreezeInfoA
JetOSSnapshotGetFreezeInfoW
JetOSSnapshotPrepareInstance
JetOSSnapshotTruncateLog
JetOSSnapshotTruncateLogInstance
JetRenameColumnA
JetRenameColumnW
JetRenameTableA
JetRenameTableW
JetRestore2A
JetRestore2W
JetRestoreA
JetRestoreInstanceA
JetRestoreInstanceW
JetRestoreW
JetSetColumnDefaultValueA
JetSetColumnDefaultValueW
JetSetCurrentIndex2A
JetSetCurrentIndex2W
JetSetCurrentIndex3A
JetSetCurrentIndex3W
JetSetCurrentIndex4A
JetSetCurrentIndex4W
JetSetCurrentIndexA
JetSetCurrentIndexW
JetSetDatabaseSizeA
JetSetDatabaseSizeW
JetSetSystemParameterA
JetSetSystemParameterW
HttpAddUrlToUrlGroup
HttpCancelHttpRequest
HttpCloseRequestQueue
HttpCloseServerSession
HttpCloseUrlGroup
HttpCreateRequestQueue
HttpCreateServerSession
HttpCreateUrlGroup
HttpQueryRequestQueueProperty
HttpQueryServerSessionProperty
HttpQueryUrlGroupProperty
HttpRemoveUrlFromUrlGroup
HttpSetRequestQueueProperty
HttpSetServerSessionProperty
HttpSetUrlGroupProperty
HttpShutdownRequestQueue
EnumerateLoadedModulesW64
SymEnumTypesW
SymFindFileInPathW
SymGetSourceFileFromTokenW
SymGetSourceFileTokenW
SymGetSourceVarFromTokenW
SymGetSymbolFile
SymGetSymbolFileW
SymGetTypeFromNameW
SymGetTypeInfoEx
SymMatchFileNameW
SymMatchStringA
SymMatchStringW
SymSrvGetFileIndexes
SymSrvGetFileIndexesW
SymSrvGetFileIndexString
SymSrvGetFileIndexStringW
CreatePersistentTcpPortReservation
CreatePersistentUdpPortReservation
DeletePersistentTcpPortReservation
DeletePersistentUdpPortReservation
GetOwnerModuleFromPidAndInfo
GetTcpTable2
LookupPersistentTcpPortReservation
LookupPersistentUdpPortReservation
SetIpStatisticsEx
ConvertInterfaceAliasToLuid
ConvertInterfaceGuidToLuid
ConvertInterfaceIndexToLuid
ConvertInterfaceLuidToAlias
ConvertInterfaceLuidToGuid
ConvertInterfaceLuidToIndex
ConvertInterfaceLuidToNameA
ConvertInterfaceLuidToNameW
ConvertInterfaceNameToLuidA
ConvertInterfaceNameToLuidW
ConvertIpv4MaskToLength
ConvertLengthToIpv4Mask
GetCurrentThreadCompartmentId
GetNetworkInformation
GetSessionCompartmentId
if_indextoname
if_nametoindex
SetCurrentThreadCompartmentId
SetNetworkInformation
SetSessionCompartmentId
AcquireSRWLockExclusive
AcquireSRWLockShared
AddSIDToBoundaryDescriptor
AllocateUserPhysicalPagesNuma
ApplicationRecoveryFinished
ApplicationRecoveryInProgress
CallbackMayRunLong
CancelIoEx
CancelSynchronousIo
CancelThreadpoolIo
ClosePrivateNamespace
CloseThreadpool
CloseThreadpoolCleanupGroup
CloseThreadpoolCleanupGroupMembers
CopyFileTransactedA
CopyFileTransactedW
CreateBoundaryDescriptorA
CreateBoundaryDescriptorW
CreateDirectoryTransactedA
CreateDirectoryTransactedW
CreateEventExA
CreateEventExW
CreateFileMappingNumaA
CreateFileMappingNumaW
CreateFileTransactedA
CreateFileTransactedW
CreateHardLinkTransactedA
CreateHardLinkTransactedW
CreateMutexExA
CreateMutexExW
CreatePrivateNamespaceA
CreatePrivateNamespaceW
CreateSemaphoreExA
CreateSemaphoreExW
CreateSymbolicLinkA
CreateSymbolicLinkTransactedA
CreateSymbolicLinkTransactedW
CreateSymbolicLinkW
CreateThreadpool
CreateThreadpoolCleanupGroup
CreateThreadpoolIo
CreateThreadpoolTimer
CreateThreadpoolWait
CreateThreadpoolWork
CreateWaitableTimerExA
CreateWaitableTimerExW
DeleteFileTransactedA
DeleteFileTransactedW
DeleteProcThreadAttributeList
EnumResourceLanguagesExA
EnumResourceLanguagesExW
EnumResourceNamesExA
EnumResourceNamesExW
EnumResourceTypesExA
EnumResourceTypesExW
FindFirstFileNameTransactedW
FindFirstFileNameW
FindFirstFileTransactedA
FindFirstFileTransactedW
FindNextFileNameW
FlushProcessWriteBuffers
FreeLibraryWhenCallbackReturns
GetApplicationRecoveryCallback
GetApplicationRestartSettings
GetCompressedFileSizeTransactedA
GetCompressedFileSizeTransactedW
GetDynamicTimeZoneInformation
GetErrorMode
GetFileAttributesTransactedA
GetFileAttributesTransactedW
GetFileBandwidthReservation
GetFileInformationByHandleEx
GetFinalPathNameByHandleA
GetFinalPathNameByHandleW
GetFullPathNameTransactedA
GetFullPathNameTransactedW
GetLongPathNameTransactedA
GetLongPathNameTransactedW
GetNamedPipeAttribute
GetNamedPipeClientComputerNameA
GetNamedPipeClientComputerNameW
GetNamedPipeClientProcessId
GetNamedPipeClientSessionId
GetNamedPipeServerProcessId
GetNamedPipeServerSessionId
GetNumaProximityNode
GetProductInfo
GetQueuedCompletionStatusEx
GetTickCount64
GetVolumeInformationByHandleW
InitializeCriticalSectionEx
InitializeProcThreadAttributeList
InitOnceBeginInitialize
InitOnceComplete
InitOnceExecuteOnce
IsThreadAFiber
MapViewOfFileExNuma
MoveFileTransactedA
MoveFileTransactedW
OpenFileById
OpenPrivateNamespaceA
OpenPrivateNamespaceW
QueryActCtxSettingsW
QueryFullProcessImageNameA
QueryFullProcessImageNameW
QueryIdleProcessorCycleTime
QueryProcessCycleTime
QueryThreadCycleTime
RegisterApplicationRecoveryCallback
RegisterApplicationRestart
ReleaseMutexWhenCallbackReturns
ReleaseSRWLockExclusive
RemoveDirectoryTransactedA
RemoveDirectoryTransactedW
RemoveVectoredContinueHandler
RemoveVectoredExceptionHandler
SetDynamicTimeZoneInformation
SetFileAttributesTransactedA
SetFileAttributesTransactedW
SetFileBandwidthReservation
SetFileInformationByHandle
SetFileIoOverlappedRange
SetLastError
SetNamedPipeAttribute
SetStdHandleEx
SetThreadpoolThreadMinimum
SetThreadpoolTimer
SetThreadpoolWait
SleepConditionVariableCS
SleepConditionVariableSRW
StartThreadpoolIo
SubmitThreadpoolWork
TrySubmitThreadpoolCallback
UnregisterApplicationRecoveryCallback
UnregisterApplicationRestart
UpdateProcThreadAttribute
VirtualAllocExNuma
WaitForThreadpoolIoCallbacks
WaitForThreadpoolTimerCallbacks
WaitForThreadpoolWaitCallbacks
WaitForThreadpoolWorkCallbacks
Wow64GetThreadContext
Wow64SetThreadContext
Wow64SuspendThread
GetConsoleHistoryInfo
GetConsoleOriginalTitleA
GetConsoleOriginalTitleW
GetConsoleScreenBufferInfoEx
GetCurrentConsoleFontEx
SetConsoleHistoryInfo
SetConsoleScreenBufferInfoEx
SetCurrentConsoleFontEx
CompareStringEx
CompareStringOrdinal
EnumCalendarInfoExEx
EnumDateFormatsExEx
EnumSystemLocalesEx
EnumTimeFormatsEx
FindNLSString
FindNLSStringEx
GetCalendarInfoEx
GetCurrencyFormatEx
GetDateFormatEx
GetDurationFormat
GetDurationFormatEx
GetFileMUIInfo
GetFileMUIPath
GetLocaleInfoEx
GetNLSVersionEx
GetNumberFormatEx
GetStringScripts
GetSystemDefaultLocaleName
GetSystemPreferredUILanguages
GetThreadPreferredUILanguages
GetThreadUILanguage
GetTimeFormatEx
GetUILanguageInfo
GetUserDefaultLocaleName
GetUserPreferredUILanguages
IdnToAscii
IdnToNameprepUnicode
IdnToUnicode
IsNormalizedString
IsValidLocaleName
LCIDToLocaleName
LCMapStringEx
LocaleNameToLCID
NormalizeString
NotifyUILanguageChange
SetThreadPreferredUILanguages
VerifyScripts
WNetRestoreSingleConnectionW
MprConfigFilterGetInfo
MprConfigFilterSetInfo
WcsAssociateColorProfileWithDevice
WcsCheckColors
WcsCreateIccProfile
WcsDisassociateColorProfileFromDevice
WcsEnumColorProfiles
WcsEnumColorProfilesSize
WcsGetDefaultColorProfile
WcsGetDefaultColorProfileSize
WcsGetDefaultRenderingIntent
WcsGetUsePerUserProfiles
WcsOpenColorProfileA
WcsOpenColorProfileW
WcsSetDefaultColorProfile
WcsSetDefaultRenderingIntent
WcsSetUsePerUserProfiles
WcsTranslateColors
MsiGetPatchFileListA
MsiGetPatchFileListW
NetServerAliasAdd
NetServerAliasDel
NetServerAliasEnum
NetShareDelEx
DsBindByInstanceA
DsBindByInstanceW
CoDisconnectContext
PdhAddEnglishCounterA
PdhAddEnglishCounterW
PdhCollectQueryDataWithTime
PdhValidatePathExA
PdhValidatePathExW
DevicePowerClose
DevicePowerEnumDevices
DevicePowerOpen
DevicePowerSetDeviceState
PowerCanRestoreIndividualDefaultPowerScheme
PowerCreatePossibleSetting
PowerCreateSetting
PowerDeleteScheme
PowerDeterminePlatformRole
PowerDuplicateScheme
PowerEnumerate
PowerGetActiveScheme
PowerImportPowerScheme
PowerOpenSystemPowerKey
PowerOpenUserPowerKey
PowerReadACDefaultIndex
PowerReadACValue
PowerReadACValueIndex
PowerReadDCDefaultIndex
PowerReadDCValue
PowerReadDCValueIndex
PowerReadDescription
PowerReadFriendlyName
PowerReadIconResourceSpecifier
PowerReadPossibleDescription
PowerReadPossibleFriendlyName
PowerReadPossibleValue
PowerReadSettingAttributes
PowerReadValueIncrement
PowerReadValueMax
PowerReadValueMin
PowerReadValueUnitsSpecifier
PowerRemovePowerSetting
PowerReplaceDefaultPowerSchemes
PowerRestoreDefaultPowerSchemes
PowerRestoreIndividualDefaultPowerScheme
PowerSetActiveScheme
PowerSettingAccessCheck
PowerWriteACDefaultIndex
PowerWriteACValueIndex
PowerWriteDCDefaultIndex
PowerWriteDCValueIndex
PowerWriteDescription
PowerWriteFriendlyName
PowerWriteIconResourceSpecifier
PowerWritePossibleDescription
PowerWritePossibleFriendlyName
PowerWritePossibleValue
PowerWriteSettingAttributes
PowerWriteValueIncrement
PowerWriteValueMax
PowerWriteValueMin
PowerWriteValueUnitsSpecifier
EnumProcessModulesEx
GetWsChangesEx
ResUtilFindFileTimeProperty
ResUtilGetClusterRoleState
ResUtilGetFileTimeProperty
ResUtilGetLongProperty
ResUtilGetQwordValue
ResUtilSetQwordValue
RpcBindingBind
RpcBindingUnbind
RpcServerSubscribeForNotification
RpcServerUnsubscribeForNotification
RpcBindingCreateA
RpcBindingCreateW
RpcExceptionFilter
RpcServerCompleteSecurityCallback
RpcServerInqBindingHandle
I_RpcBindingCreateNP
I_RpcBindingInqSecurityContextKeyInfo
I_RpcServerInqRemoteConnAddress
I_RpcServerStartService
RtmConvertIpv6AddressAndLengthToNetAddress
RtmConvertNetAddressToIpv6AddressAndLength
ChangeAccountPasswordA
ChangeAccountPasswordW
CM_Apply_PowerScheme
CM_Delete_Device_Interface_Key_ExA
CM_Delete_Device_Interface_Key_ExW
CM_Delete_Device_Interface_KeyA
CM_Delete_Device_Interface_KeyW
CM_Delete_PowerScheme
CM_Duplicate_PowerScheme
CM_Import_PowerScheme
CM_Open_Device_Interface_Key_ExA
CM_Open_Device_Interface_Key_ExW
CM_Open_Device_Interface_KeyA
CM_Open_Device_Interface_KeyW
CM_Restore_DefaultPowerScheme
CM_RestoreAll_DefaultPowerSchemes
CM_Set_ActiveScheme
CM_Write_UserPowerKey
SetupDiGetClassPropertyExW
SetupDiGetClassPropertyKeys
SetupDiGetClassPropertyKeysExW
SetupDiGetClassPropertyW
SetupDiGetDeviceInterfacePropertyKeys
SetupDiGetDeviceInterfacePropertyW
SetupDiGetDevicePropertyKeys
SetupDiGetDevicePropertyW
SetupDiLoadDeviceIcon
SetupDiSetClassPropertyExW
SetupDiSetClassPropertyW
SetupDiSetDeviceInterfacePropertyW
SetupDiSetDevicePropertyW
SetupGetInfDriverStoreLocationA
SetupGetInfDriverStoreLocationW
SetupGetInfPublishedNameA
SetupGetInfPublishedNameW
SetupGetThreadLogToken
SetupSetThreadLogToken
SetupWriteTextLog
SetupWriteTextLogError
SetupWriteTextLogInfLine
SfcIsKeyProtected
AssocCreateForClasses
InitNetworkAddressControl
SHEvaluateSystemCommandTemplate
SHGetDriveMedia
SHGetLocalizedName
SHGetStockIconInfo
SHQueryUserNotificationState
SHRemoveLocalizedName
AssocGetDetailsOfPropKey
CIDLData_CreateFromIDArray
ILLoadFromStreamEx
SHBindToFolderIDListParent
SHBindToFolderIDListParentEx
SHBindToObject
SHChangeNotifyRegisterThread
SHCreateDataObject
SHCreateDefaultContextMenu
Shell_GetCachedImageIndexA
Shell_GetCachedImageIndexW
SHGetKnownFolderIDList
SHGetKnownFolderPath
SHGetPathFromIDListEx
SHGetSetFolderCustomSettings
SHOpenWithDialog
SHSetFolderPathA
SHSetFolderPathW
SHSetKnownFolderPath
SHAddDefaultPropertiesByExt
SHAssocEnumHandlers
SHCreateAssociationRegistration
SHCreateDefaultExtractIcon
SHCreateDefaultPropertiesOp
SHCreateItemFromIDList
SHCreateItemFromParsingName
SHCreateItemFromRelativeName
SHCreateItemInKnownFolder
SHCreateItemWithParent
SHCreateShellItemArray
SHCreateShellItemArrayFromDataObject
SHCreateShellItemArrayFromIDLists
SHCreateShellItemArrayFromShellItem
SHGetIDListFromObject
SHGetNameFromIDList
SHGetPropertyStoreFromIDList
SHGetPropertyStoreFromParsingName
SHGetTemporaryPropertyForItem
SHSetDefaultProperties
SHSetTemporaryPropertyForItem
ConnectToConnectionPoint
IsOS
IStream_Copy
IStream_Read
IStream_ReadPidl
IStream_ReadStr
IStream_Reset
IStream_Size
IStream_Write
IStream_WritePidl
IStream_WriteStr
IUnknown_AtomicRelease
IUnknown_GetSite
IUnknown_GetWindow
IUnknown_QueryService
IUnknown_Set
IUnknown_SetSite
MLFreeLibrary
MLLoadLibraryA
MLLoadLibraryW
ParseURLA
ParseURLW
PathCreateFromUrlAlloc
PathMatchSpecExA
PathMatchSpecExW
QISearch
SHAnsiToAnsi
SHAnsiToUnicode
SHCreateMemStream
SHFormatDateTimeA
SHFormatDateTimeW
SHMessageBoxCheckA
SHMessageBoxCheckW
SHRegGetIntW
SHSendMessageBroadcastA
SHSendMessageBroadcastW
SHStripMneumonicA
SHStripMneumonicW
SHUnicodeToAnsi
SHUnicodeToUnicode
StrCmpNCA
StrCmpNCW
StrCmpNICA
StrCmpNICW
UrlFixupW
WhichPlatform
CoInternetCombineIUri
CoInternetCombineUrlEx
CoInternetGetSecurityUrlEx
CoInternetIsFeatureEnabledForIUri
CoInternetParseIUri
CreateUri
CreateUriFromMultiByteString
CreateUriWithFragment
CreateURLMonikerEx2
AddClipboardFormatListener
CancelShutdown
ChangeWindowMessageFilter
CreateDesktopExA
CreateDesktopExW
GetIconInfoExA
GetIconInfoExW
GetPhysicalCursorPos
GetUpdatedClipboardFormats
IsProcessDPIAware
LogicalToPhysicalPoint
PhysicalToLogicalPoint
RegisterPowerSettingNotification
RemoveClipboardFormatListener
SetPhysicalCursorPos
SetProcessDPIAware
ShutdownBlockReasonCreate
ShutdownBlockReasonDestroy
ShutdownBlockReasonQuery
SoundSentry
UnregisterPowerSettingNotification
WindowFromPhysicalPoint
CreateProfile
ScriptGetFontAlternateGlyphs
ScriptGetFontFeatureTags
ScriptGetFontLanguageTags
ScriptGetFontScriptTags
ScriptItemizeOpenType
ScriptPlaceOpenType
ScriptPositionSingleGlyph
ScriptShapeOpenType
ScriptSubstituteSingleGlyph
BeginBufferedAnimation
BeginBufferedPaint
BufferedPaintClear
BufferedPaintInit
BufferedPaintRenderAnimation
BufferedPaintSetAlpha
BufferedPaintStopAllAnimations
BufferedPaintUnInit
DrawThemeParentBackgroundEx
DrawThemeTextEx
EndBufferedAnimation
EndBufferedPaint
GetBufferedPaintBits
GetBufferedPaintDC
GetBufferedPaintTargetDC
GetBufferedPaintTargetRect
GetThemeBitmap
GetThemeStream
GetThemeTransitionDuration
IsCompositionActive
OpenThemeDataEx
SetWindowThemeAttribute
GetFileVersionInfoExW
GetFileVersionInfoSizeExW
InternetGetSecurityInfoByURL
InternetGetSecurityInfoByURLA
InternetGetSecurityInfoByURLW
SCardGetTransmitCount
SCardReadCacheA
SCardReadCacheW
SCardWriteCacheA
SCardWriteCacheW
CryptCATAllocSortedMemberInfo
CryptCATFreeSortedMemberInfo
WintrustSetDefaultIncludePEPageHashes
WSAConnectByList
WSAConnectByNameA
WSAConnectByNameW
WSAEnumNameSpaceProvidersExA
WSAEnumNameSpaceProvidersExW
WSAPoll
WSARecv
WSASendMsg
WSAAdvertiseProvider
WSAProviderCompleteAsyncCall
WSAUnadvertiseProvider
WSCEnumNameSpaceProvidersEx32
WSCGetApplicationCategory
WSCGetProviderInfo
WSCGetProviderInfo32
WSCInstallNameSpaceEx
WSCInstallNameSpaceEx32
WSCInstallProviderAndChains64_32
WSCSetApplicationCategory
WSCSetProviderInfo
WSCSetProviderInfo32
FreeAddrInfoEx
FreeAddrInfoExW
GetAddrInfoExA
GetAddrInfoExW
inet_ntop
inet_pton
InetNtopW
InetPtonW
SetAddrInfoExA
SetAddrInfoExW
SnmpListenEx
WTSRegisterSessionNotificationEx
WTSUnRegisterSessionNotificationEx