-
Notifications
You must be signed in to change notification settings - Fork 116
/
requiredNamespacesForNames.rsp
2642 lines (2642 loc) · 128 KB
/
requiredNamespacesForNames.rsp
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
--requiredNamespaceForName
# region amvideo.h
VIDEOINFOHEADER=Windows.Win32.Media.MediaFoundation
MPEG1VIDEOINFO=Windows.Win32.Media.MediaFoundation
# endregion emvideo.h
# region appmgmt.h
APPCATEGORYINFO=Windows.Win32.UI.Shell
APPCATEGORYINFOLIST=Windows.Win32.UI.Shell
# endregion appmgmt.h
# region audioengineendpoint.h
AE_CURRENT_POSITION=Windows.Win32.System.RemoteDesktop
AE_POSITION_FLAGS=Windows.Win32.System.RemoteDesktop
IAudioDeviceEndpoint=Windows.Win32.System.RemoteDesktop
IAudioEndpoint=Windows.Win32.System.RemoteDesktop
IAudioEndpointControl=Windows.Win32.System.RemoteDesktop
IAudioEndpointRT=Windows.Win32.System.RemoteDesktop
IAudioInputEndpointRT=Windows.Win32.System.RemoteDesktop
IAudioOutputEndpointRT=Windows.Win32.System.RemoteDesktop
# endregion audioengineendpoint.h
# region baseaudioprocessingobject.h
AERT_Allocate=Windows.Win32.Media.Audio.DirectMusic
AERT_Free=Windows.Win32.Media.Audio.DirectMusic
# endregion baseaudioprocessingobject.h
# region combaseapi.h
AgileReferenceOptions=Windows.Win32.System.WinRT
CLSIDFromProgIDEx=Windows.Win32.System.Com
CoDecodeProxy=Windows.Win32.System.WinRT
CoFileTimeNow=Windows.Win32.System.Com
CoGetDefaultContext=Windows.Win32.System.ComponentServices
CreateStreamOnHGlobal=Windows.Win32.System.Com.StructuredStorage
FreePropVariantArray=Windows.Win32.System.Com.StructuredStorage
GetHGlobalFromStream=Windows.Win32.System.Com.StructuredStorage
PropVariantClear=Windows.Win32.System.Com.StructuredStorage
PropVariantCopy=Windows.Win32.System.Com.StructuredStorage
CoGetInterfaceAndReleaseStream=Windows.Win32.System.Com.StructuredStorage
RoGetAgileReference=Windows.Win32.System.WinRT
ServerInformation=Windows.Win32.System.WinRT
CoGetMarshalSizeMax=Windows.Win32.System.Com.Marshal
CoMarshalInterface=Windows.Win32.System.Com.Marshal
CoUnmarshalInterface=Windows.Win32.System.Com.Marshal
CoMarshalHresult=Windows.Win32.System.Com.Marshal
CoUnmarshalHresult=Windows.Win32.System.Com.Marshal
CoReleaseMarshalData=Windows.Win32.System.Com.Marshal
CoGetStandardMarshal=Windows.Win32.System.Com.Marshal
CoGetStdMarshalEx=Windows.Win32.System.Com.Marshal
CoMarshalInterThreadInterfaceInStream=Windows.Win32.System.Com.Marshal
STDMSHLFLAGS=Windows.Win32.System.Com.Marshal
IMarshal=Windows.Win32.System.Com.Marshal
IMarshal2=Windows.Win32.System.Com.Marshal
IMarshalingStream=Windows.Win32.System.Com.Marshal
# endregion combaseapi.h
# region commctrl.h
DefSubclassProc=Windows.Win32.UI.Shell
GetWindowSubclass=Windows.Win32.UI.Shell
RemoveWindowSubclass=Windows.Win32.UI.Shell
SetWindowSubclass=Windows.Win32.UI.Shell
SUBCLASSPROC=Windows.Win32.UI.Shell
# endregion commctrl.h
# region commdlg.h
#OFNOTIFYA=Windows.Win32.UI.Controls
#OFNOTIFYW=Windows.Win32.UI.Controls
#OFNOTIFYEXA=Windows.Win32.UI.Controls
#OFNOTIFYEXW=Windows.Win32.UI.Controls
# endregion commdlg.h
# region coml2api.h
STGM=Windows.Win32.System.Com
# endregion coml2api.h
# region consoleapi2.h (also defined in ntddvdeo.h)
FOREGROUND_BLUE=Windows.Win32.System.Console
FOREGROUND_GREEN=Windows.Win32.System.Console
FOREGROUND_RED=Windows.Win32.System.Console
FOREGROUND_INTENSITY=Windows.Win32.System.Console
BACKGROUND_BLUE=Windows.Win32.System.Console
BACKGROUND_GREEN=Windows.Win32.System.Console
BACKGROUND_RED=Windows.Win32.System.Console
BACKGROUND_INTENSITY=Windows.Win32.System.Console
COMMON_LVB_LEADING_BYTE=Windows.Win32.System.Console
COMMON_LVB_TRAILING_BYTE=Windows.Win32.System.Console
COMMON_LVB_GRID_HORIZONTAL=Windows.Win32.System.Console
COMMON_LVB_GRID_LVERTICAL=Windows.Win32.System.Console
COMMON_LVB_GRID_RVERTICAL=Windows.Win32.System.Console
COMMON_LVB_REVERSE_VIDEO=Windows.Win32.System.Console
COMMON_LVB_UNDERSCORE=Windows.Win32.System.Console
COMMON_LVB_SBCSDBCS=Windows.Win32.System.Console
# endregion consoleapi2.h (also defined in ntddvdeo.h)
# region d2d1.h
# These moved up to Common to break a circular dependency between D2D and DWrite
ID2D1SimplifiedGeometrySink=Windows.Win32.Graphics.Direct2D.Common
D2D1_FILL_MODE=Windows.Win32.Graphics.Direct2D.Common
D2D1_PATH_SEGMENT=Windows.Win32.Graphics.Direct2D.Common
D2D_POINT_2F=Windows.Win32.Graphics.Direct2D.Common
D2D_COLOR_F=Windows.Win32.Graphics.Direct2D.Common
D2D1_FIGURE_BEGIN=Windows.Win32.Graphics.Direct2D.Common
D2D1_BEZIER_SEGMENT=Windows.Win32.Graphics.Direct2D.Common
D2D1_FIGURE_END=Windows.Win32.Graphics.Direct2D.Common
D2D_SIZE_U=Windows.Win32.Graphics.Direct2D.Common
D2D1_PIXEL_FORMAT=Windows.Win32.Graphics.Direct2D.Common
D2D1_ALPHA_MODE=Windows.Win32.Graphics.Direct2D.Common
# Moved up to Common to avoid dragging in D2D when only the types are needed
D2D1_COLOR_F=Windows.Win32.Graphics.Direct2D.Common
D2D1_COLORMATRIX_ALPHA_MODE=Windows.Win32.Graphics.Direct2D.Common
D2D1_TURBULENCE_NOISE=Windows.Win32.Graphics.Direct2D.Common
D2D1_GRADIENT_STOP=Windows.Win32.Graphics.Direct2D.Common
# endregion d2d1.h
# region d2d1_1.h
# Moved up to avoid dragging in D2D when only the types are needed
D2D1_COMPOSITE_MODE=Windows.Win32.Graphics.Direct2D.Common
# endregion d2d1_1.h
# region d2deffects.h
# Moved up to avoid dragging in D2D when only the types are needed
D2D1_BORDER_MODE=Windows.Win32.Graphics.Direct2D.Common
D2D1_BLEND_MODE=Windows.Win32.Graphics.Direct2D.Common
D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE=Windows.Win32.Graphics.Direct2D.Common
# endregion d2deffects.h
# region d3d9.h
IDirect3D9ExOverlayExtension=Windows.Win32.Media.MediaFoundation
IDirect3DAuthenticatedChannel9=Windows.Win32.Media.MediaFoundation
IDirect3DCryptoSession9=Windows.Win32.Media.MediaFoundation
IDirect3DDevice9Video=Windows.Win32.Media.MediaFoundation
# endregion d3d9.h
# region d3d9caps.h
D3DCONTENTPROTECTIONCAPS=Windows.Win32.Media.MediaFoundation
D3DOVERLAYCAPS=Windows.Win32.Media.MediaFoundation
# endregion d3d9caps.h
# region d3d9types.h
D3DMATRIX=Windows.Win32.Graphics.Direct3D
D3DVECTOR=Windows.Win32.Graphics.Direct3D
# endregion d3d9types.h
# region dbghelp.h (also defined in imagehlp.h)
PSYMBOLSERVERCALLBACKPROC=Windows.Win32.System.Diagnostics.Debug
# endregion dbghelp.h
# region dcommon.h
DWRITE_GLYPH_IMAGE_FORMATS=Windows.Win32.Graphics.DirectWrite
DWRITE_MEASURING_MODE=Windows.Win32.Graphics.DirectWrite
# endregion dcommon.h
# region devicetopology.h
IKsControl=Windows.Win32.Media.KernelStreaming
IKsFormatSupport=Windows.Win32.Media.KernelStreaming
IKsJackContainerId=Windows.Win32.Media.KernelStreaming
IKsJackDescription=Windows.Win32.Media.KernelStreaming
IKsJackDescription2=Windows.Win32.Media.KernelStreaming
IKsJackDescription3=Windows.Win32.Media.KernelStreaming
IKsJackSinkInformation=Windows.Win32.Media.KernelStreaming
# endregion devicetopology.h
# region devpropdef.h
DEVPROPKEY=Windows.Win32.Foundation
# endregion
# region dshowasf.h
_AM_ASFWRITERCONFIG_PARAM=Windows.Win32.Media.WindowsMediaFormat
IAMWMBufferPass=Windows.Win32.Media.DirectShow
IAMWMBufferPassCallback=Windows.Win32.Media.DirectShow
# endregion dshowasf.h
# region dvdmedia.h
VIDEOINFOHEADER2=Windows.Win32.Media.MediaFoundation
MPEG2VIDEOINFO=Windows.Win32.Media.MediaFoundation
# dvdmedia dxgi.h
# region dxgi.h
DXGI_FORMAT=Windows.Win32.Graphics.Dxgi.Common
# endregion dxgi.h
# region dxgi1_2.h
DXGI_ALPHA_MODE=Windows.Win32.Graphics.Dxgi.Common
# endregion dxgi1_2.h
# region dxgitype.h
DXGI_JPEG_AC_HUFFMAN_TABLE=Windows.Win32.Graphics.Dxgi.Common
DXGI_JPEG_QUANTIZATION_TABLE=Windows.Win32.Graphics.Dxgi.Common
# endregion dxgitype.h
# region dxva9typ.h
COPP_ACP_Protection_Level=Windows.Win32.Media.DirectShow
COPP_BusType=Windows.Win32.Media.DirectShow
COPP_CGMSA_Protection_Level=Windows.Win32.Media.DirectShow
COPP_ConnectorType=Windows.Win32.Media.DirectShow
COPP_HDCP_Protection_Level=Windows.Win32.Media.DirectShow
COPP_ImageAspectRatio_EN300294=Windows.Win32.Media.DirectShow
COPP_StatusFlags=Windows.Win32.Media.DirectShow
COPP_StatusHDCPFlags=Windows.Win32.Media.DirectShow
COPP_TVProtectionStandard=Windows.Win32.Media.DirectShow
DXVA_COPPSetProtectionLevelCmdData=Windows.Win32.Media.DirectShow
DXVA_COPPSetSignalingCmdData=Windows.Win32.Media.DirectShow
DXVA_COPPStatusData=Windows.Win32.Media.DirectShow
DXVA_COPPStatusDisplayData=Windows.Win32.Media.DirectShow
DXVA_COPPStatusHDCPKeyData=Windows.Win32.Media.DirectShow
DXVA_COPPStatusSignalingCmdData=Windows.Win32.Media.DirectShow
# endregion dxva9typ.h
# region errhandlingapi.h
GetLastError=Windows.Win32.Foundation
SetLastError=Windows.Win32.Foundation
# endregion errhandlingapi.h
# region endpointvolume.h
AUDIO_VOLUME_NOTIFICATION_DATA=Windows.Win32.Media.Audio
# endregion endpointvolume.h
# region evcode.h
AM_WMT_EVENT_DATA=Windows.Win32.Media.WindowsMediaFormat
# endregion evcode.h
# region exdisp.h
IShellWindows=Windows.Win32.UI.Shell
ShellWindowFindWindowOptions=Windows.Win32.UI.Shell
ShellWindowTypeConstants=Windows.Win32.UI.Shell
# endregion exdisp.h
# region icodecapi.h
CodecAPIEventData=Windows.Win32.Media.MediaFoundation
ICodecAPI=Windows.Win32.Media.MediaFoundation
# endregion icodecapi.h
# region indexsrv.h
IPhraseSink=Windows.Win32.Storage.IndexServer
WORDREP_BREAK_TYPE=Windows.Win32.Storage.IndexServer
# endregion indexsrv.h
# region libloaderapi.h
FindStringOrdinal=Windows.Win32.Globalization
FreeLibrary=Windows.Win32.Foundation
# endregion libloaderapi.h
# region lmerr.h (also defined in wincred.h)
NERR_BASE=Windows.Win32.NetworkManagement.NetManagement
NERR_PasswordExpired=Windows.Win32.NetworkManagement.NetManagement
# endregion lmerr.h
# region lmserver.h
SetServiceBits=Windows.Win32.System.Services
# endregion lmserver.h
# region memoryapi.h
ReadProcessMemory=Windows.Win32.System.Diagnostics.Debug
WriteProcessMemory=Windows.Win32.System.Diagnostics.Debug
# endregion memoryapi.h
# region mfapi.h
CapturedMetadataExposureCompensation=Windows.Win32.Media.Streaming
CapturedMetadataISOGains=Windows.Win32.Media.Streaming
CapturedMetadataWhiteBalanceGains=Windows.Win32.Media.Streaming
FaceCharacterization=Windows.Win32.Media.Streaming
FaceCharacterizationBlobHeader=Windows.Win32.Media.Streaming
FaceRectInfo=Windows.Win32.Media.Streaming
FaceRectInfoBlobHeader=Windows.Win32.Media.Streaming
HistogramBlobHeader=Windows.Win32.Media.Streaming
HistogramDataHeader=Windows.Win32.Media.Streaming
HistogramGrid=Windows.Win32.Media.Streaming
HistogramHeader=Windows.Win32.Media.Streaming
MetadataTimeStamps=Windows.Win32.Media.Streaming
# endregion mfapi.h
# region mfidl.h
MF_MEDIASOURCE_STATUS_INFO=Windows.Win32.Media.Streaming
MF_TRANSFER_VIDEO_FRAME_FLAGS=Windows.Win32.Media.Streaming
# endregion mfidl.h
# region mftransform.h
IMFDeviceTransform=Windows.Win32.Media.MediaFoundation
IMFDeviceTransformCallback=Windows.Win32.Media.MediaFoundation
# endregion mftransform.h
# region minwinbase.h
CREATE_PROCESS_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
CREATE_THREAD_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
DEBUG_EVENT=Windows.Win32.System.Diagnostics.Debug
EXCEPTION_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
EXIT_PROCESS_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
EXIT_THREAD_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
FILE_INFO_BY_HANDLE_CLASS=Windows.Win32.Storage.FileSystem
FILETIME=Windows.Win32.Foundation
FINDEX_INFO_LEVELS=Windows.Win32.Storage.FileSystem
FINDEX_SEARCH_OPS=Windows.Win32.Storage.FileSystem
GET_FILEEX_INFO_LEVELS=Windows.Win32.Storage.FileSystem
LOAD_DLL_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
LPOVERLAPPED_COMPLETION_ROUTINE=Windows.Win32.System.IO
LPTHREAD_START_ROUTINE=Windows.Win32.System.Threading
OUTPUT_DEBUG_STRING_INFO=Windows.Win32.System.Diagnostics.Debug
OVERLAPPED_ENTRY=Windows.Win32.System.IO
OVERLAPPED=Windows.Win32.System.IO
PROC_THREAD_ATTRIBUTE_NUM=Windows.Win32.System.Threading
READ_DIRECTORY_NOTIFY_INFORMATION_CLASS=Windows.Win32.Storage.FileSystem
RIP_INFO=Windows.Win32.System.Diagnostics.Debug
SECURITY_ATTRIBUTES=Windows.Win32.Security
SYSTEMTIME=Windows.Win32.Foundation
UNLOAD_DLL_DEBUG_INFO=Windows.Win32.System.Diagnostics.Debug
WIN32_FIND_DATAA=Windows.Win32.Storage.FileSystem
WIN32_FIND_DATAW=Windows.Win32.Storage.FileSystem
# endregion minwinbase.h
# region mmddk.h
JOYREGHWVALUES=Windows.Win32.Devices.HumanInterfaceDevice
MDEVICECAPSEX=Windows.Win32.Media.Audio.DirectMusic
MIDIOPENDESC=Windows.Win32.Media.Audio.DirectMusic
# endregion mmddk.h
# region mmreg.h
VOLUMEWAVEFILTER=Windows.Win32.Media.Audio
ECHOWAVEFILTER=Windows.Win32.Media.Audio
WAVEFILTER=Windows.Win32.Media.Audio
WAVEFORMATEXTENSIBLE=Windows.Win32.Media.Audio
HEAACWAVEFORMAT=Windows.Win32.Media.DirectShow
HEAACWAVEINFO=Windows.Win32.Media.DirectShow
MPEG1WAVEFORMAT=Windows.Win32.Media.DirectShow
MPEGLAYER3WAVEFORMAT=Windows.Win32.Media.DirectShow
# endregion mmreg.h
# region mscoree.h
DEPRECATED_CLR_API_MESG=Windows.Win32.System.ClrHosting
# endregion mscoree.h
# region mssip.h
MS_ADDINFO_CATALOGMEMBER=Windows.Win32.Security.Cryptography.Catalog
# endregion mssip.h
# region ntifs.h
RtlConvertSidToUnicodeString=Windows.Win32.Security
# endregion ntifs.h
# region ntstatus.h (also defined in wincred.h)
STATUS_ACCESS_DENIED=Windows.Win32.Foundation
# endregion
# region oaidl.h
SAFEARRAY=Windows.Win32.System.Com
SAFEARRAYBOUND=Windows.Win32.System.Com
IPropertyBag=Windows.Win32.System.Com.StructuredStorage
IPropertyBag2=Windows.Win32.System.Com.StructuredStorage
PROPBAG2=Windows.Win32.System.Com.StructuredStorage
IErrorInfo=Windows.Win32.System.Com
SetErrorInfo=Windows.Win32.System.Com
GetErrorInfo=Windows.Win32.System.Com
ISupportErrorInfo=Windows.Win32.System.Com
IErrorLog=Windows.Win32.System.Com
EXCEPINFO=Windows.Win32.System.Com
LPEXCEPFINO_DEFERRED_FILLIN=Windows.Win32.System.Com
IDispatch=Windows.Win32.System.Com
DISPPARAMS=Windows.Win32.System.Com
ITypeInfo=Windows.Win32.System.Com
ITypeInfo2=Windows.Win32.System.Com
TYPEATTR=Windows.Win32.System.Com
TYPEKIND=Windows.Win32.System.Com
FUNCDESC=Windows.Win32.System.Com
FUNCFLAGS=Windows.Win32.System.Com
ELEMDESC=Windows.Win32.System.Com
TYPEDESC=Windows.Win32.System.Com
INVOKEKIND=Windows.Win32.System.Com
CALLCONV=Windows.Win32.System.Com
ITypeComp=Windows.Win32.System.Com
DESCKIND=Windows.Win32.System.Com
BINDPTR=Windows.Win32.System.Com
VARDESC=Windows.Win32.System.Com
VARFLAGS=Windows.Win32.System.Com
CUSTDATA=Windows.Win32.System.Com
CUSTDATAITEM=Windows.Win32.System.Com
IDLDESC=Windows.Win32.System.Com
FUNCKIND=Windows.Win32.System.Com
VARKIND=Windows.Win32.System.Com
ITypeLib=Windows.Win32.System.Com
ITypeLib2=Windows.Win32.System.Com
ITypeLibRegistration=Windows.Win32.System.Com
ITypeLibRegistrationReader=Windows.Win32.System.Com
TLIBATTR=Windows.Win32.System.Com
SYSKIND=Windows.Win32.System.Com
# endregion oaidl.h
# region o*idl.h (duplicate definitions in many headers)
ACTIVATIONTYPE=Windows.Win32.System.WinRT
BSTR_UserFree=Windows.Win32.System.Com.Marshal
BSTR_UserFree64=Windows.Win32.System.Com.Marshal
BSTR_UserMarshal=Windows.Win32.System.Com.Marshal
BSTR_UserMarshal64=Windows.Win32.System.Com.Marshal
BSTR_UserSize=Windows.Win32.System.Com.Marshal
BSTR_UserSize64=Windows.Win32.System.Com.Marshal
BSTR_UserUnmarshal=Windows.Win32.System.Com.Marshal
BSTR_UserUnmarshal64=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserFree=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserFree64=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserMarshal=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserMarshal64=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserSize=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserSize64=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserUnmarshal=Windows.Win32.System.Com.Marshal
CLIPFORMAT_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HACCEL_UserFree=Windows.Win32.System.Com.Marshal
HACCEL_UserFree64=Windows.Win32.System.Com.Marshal
HACCEL_UserMarshal=Windows.Win32.System.Com.Marshal
HACCEL_UserMarshal64=Windows.Win32.System.Com.Marshal
HACCEL_UserSize=Windows.Win32.System.Com.Marshal
HACCEL_UserSize64=Windows.Win32.System.Com.Marshal
HACCEL_UserUnmarshal=Windows.Win32.System.Com.Marshal
HACCEL_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HBITMAP_UserFree=Windows.Win32.System.Com.Marshal
HBITMAP_UserFree64=Windows.Win32.System.Com.Marshal
HBITMAP_UserMarshal=Windows.Win32.System.Com.Marshal
HBITMAP_UserMarshal64=Windows.Win32.System.Com.Marshal
HBITMAP_UserSize=Windows.Win32.System.Com.Marshal
HBITMAP_UserSize64=Windows.Win32.System.Com.Marshal
HBITMAP_UserUnmarshal=Windows.Win32.System.Com.Marshal
HBITMAP_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HDC_UserFree=Windows.Win32.System.Com.Marshal
HDC_UserFree64=Windows.Win32.System.Com.Marshal
HDC_UserMarshal=Windows.Win32.System.Com.Marshal
HDC_UserMarshal64=Windows.Win32.System.Com.Marshal
HDC_UserSize=Windows.Win32.System.Com.Marshal
HDC_UserSize64=Windows.Win32.System.Com.Marshal
HDC_UserUnmarshal=Windows.Win32.System.Com.Marshal
HDC_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HGLOBAL_UserFree=Windows.Win32.System.Com.Marshal
HGLOBAL_UserFree64=Windows.Win32.System.Com.Marshal
HGLOBAL_UserMarshal=Windows.Win32.System.Com.Marshal
HGLOBAL_UserMarshal64=Windows.Win32.System.Com.Marshal
HGLOBAL_UserSize=Windows.Win32.System.Com.Marshal
HGLOBAL_UserSize64=Windows.Win32.System.Com.Marshal
HGLOBAL_UserUnmarshal=Windows.Win32.System.Com.Marshal
HGLOBAL_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HICON_UserFree=Windows.Win32.System.Com.Marshal
HICON_UserFree64=Windows.Win32.System.Com.Marshal
HICON_UserMarshal=Windows.Win32.System.Com.Marshal
HICON_UserMarshal64=Windows.Win32.System.Com.Marshal
HICON_UserSize=Windows.Win32.System.Com.Marshal
HICON_UserSize64=Windows.Win32.System.Com.Marshal
HICON_UserUnmarshal=Windows.Win32.System.Com.Marshal
HICON_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HMENU_UserFree=Windows.Win32.System.Com.Marshal
HMENU_UserFree64=Windows.Win32.System.Com.Marshal
HMENU_UserMarshal=Windows.Win32.System.Com.Marshal
HMENU_UserMarshal64=Windows.Win32.System.Com.Marshal
HMENU_UserSize=Windows.Win32.System.Com.Marshal
HMENU_UserSize64=Windows.Win32.System.Com.Marshal
HMENU_UserUnmarshal=Windows.Win32.System.Com.Marshal
HMENU_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HPALETTE_UserFree=Windows.Win32.System.Com.Marshal
HPALETTE_UserFree64=Windows.Win32.System.Com.Marshal
HPALETTE_UserMarshal=Windows.Win32.System.Com.Marshal
HPALETTE_UserMarshal64=Windows.Win32.System.Com.Marshal
HPALETTE_UserSize=Windows.Win32.System.Com.Marshal
HPALETTE_UserSize64=Windows.Win32.System.Com.Marshal
HPALETTE_UserUnmarshal=Windows.Win32.System.Com.Marshal
HPALETTE_UserUnmarshal64=Windows.Win32.System.Com.Marshal
HWND_UserFree=Windows.Win32.System.Com.Marshal
HWND_UserFree64=Windows.Win32.System.Com.Marshal
HWND_UserMarshal=Windows.Win32.System.Com.Marshal
HWND_UserMarshal64=Windows.Win32.System.Com.Marshal
HWND_UserSize=Windows.Win32.System.Com.Marshal
HWND_UserSize64=Windows.Win32.System.Com.Marshal
HWND_UserUnmarshal=Windows.Win32.System.Com.Marshal
HWND_UserUnmarshal64=Windows.Win32.System.Com.Marshal
SNB_UserFree=Windows.Win32.System.Com.Marshal
SNB_UserFree64=Windows.Win32.System.Com.Marshal
SNB_UserMarshal=Windows.Win32.System.Com.Marshal
SNB_UserMarshal64=Windows.Win32.System.Com.Marshal
SNB_UserSize=Windows.Win32.System.Com.Marshal
SNB_UserSize64=Windows.Win32.System.Com.Marshal
SNB_UserUnmarshal=Windows.Win32.System.Com.Marshal
SNB_UserUnmarshal64=Windows.Win32.System.Com.Marshal
IAgileReference=Windows.Win32.System.WinRT
IApartmentShutdown=Windows.Win32.System.WinRT
IDirectWriterLock=Windows.Win32.System.Com.StructuredStorage
IEnumSTATSTG=Windows.Win32.System.Com.StructuredStorage
IFillLockBytes=Windows.Win32.System.Com.StructuredStorage
ILayoutStorage=Windows.Win32.System.Com.StructuredStorage
ILockBytes=Windows.Win32.System.Com.StructuredStorage
IRootStorage=Windows.Win32.System.Com.StructuredStorage
#ISequentialStream=Windows.Win32.System.Com.StructuredStorage
IStorage=Windows.Win32.System.Com.StructuredStorage
#IStream=Windows.Win32.System.Com.StructuredStorage
#IPersistStream=Windows.Win32.System.Com.StructuredStorage
IPersistStorage=Windows.Win32.System.Com.StructuredStorage
LOCKTYPE=Windows.Win32.System.Com
LPSAFEARRAY_UserFree=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserFree64=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserMarshal=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserMarshal64=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserSize=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserSize64=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserUnmarshal=Windows.Win32.System.Com.Marshal
LPSAFEARRAY_UserUnmarshal64=Windows.Win32.System.Com.Marshal
RemSNB=Windows.Win32.System.Com.StructuredStorage
#STATSTG=Windows.Win32.System.Com.StructuredStorage
STGMEDIUM_UserFree=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserFree64=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserMarshal=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserMarshal64=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserSize=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserSize64=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserUnmarshal=Windows.Win32.System.Com.Marshal
STGMEDIUM_UserUnmarshal64=Windows.Win32.System.Com.Marshal
VARIANT_UserFree=Windows.Win32.System.Variant
VARIANT_UserFree64=Windows.Win32.System.Variant
VARIANT_UserMarshal=Windows.Win32.System.Variant
VARIANT_UserMarshal64=Windows.Win32.System.Variant
VARIANT_UserSize=Windows.Win32.System.Variant
VARIANT_UserSize64=Windows.Win32.System.Variant
VARIANT_UserUnmarshal=Windows.Win32.System.Variant
VARIANT_UserUnmarshal64=Windows.Win32.System.Variant
# endregion o*idl.h (duplicate definitions in many headers)
# region objbase.h
CoGetInstanceFromFile=Windows.Win32.System.Com.StructuredStorage
CoGetInstanceFromIStorage=Windows.Win32.System.Com.StructuredStorage
StgOpenAsyncDocfileOnIFillLockBytes=Windows.Win32.System.Com.StructuredStorage
StgGetIFillLockBytesOnILockBytes=Windows.Win32.System.Com.StructuredStorage
StgGetIFillLockBytesOnFile=Windows.Win32.System.Com.StructuredStorage
StgOpenLayoutDocfile=Windows.Win32.System.Com.StructuredStorage
CoRegisterMessageFilter=Windows.Win32.Media.Audio
# endregion objbase.h
# region objidl.h
IMessageFilter=Windows.Win32.Media.Audio
IThumbnailExtractor=Windows.Win32.System.Com.UI
IDummyHICONIncluder=Windows.Win32.System.Com.UI
STGY=Windows.Win32.System.Com
# endregion objidl.h
# region ocidl.h
CONNECTDATA=Windows.Win32.System.Com
IEnumConnections=Windows.Win32.System.Com
IEnumConnectionPoints=Windows.Win32.System.Com
IConnectionPoint=Windows.Win32.System.Com
IConnectionPointContainer=Windows.Win32.System.Com
IPersistMemory=Windows.Win32.System.Com
IPersistStreamInit=Windows.Win32.System.Com
# endregion ocidl.h
# region ole2.h
OleConvertIStorageToOLESTREAM=Windows.Win32.System.Com.StructuredStorage
OleConvertIStorageToOLESTREAMEx=Windows.Win32.System.Com.StructuredStorage
OleConvertOLESTREAMToIStorage=Windows.Win32.System.Com.StructuredStorage
OleConvertOLESTREAMToIStorageEx=Windows.Win32.System.Com.StructuredStorage
ReadFmtUserTypeStg=Windows.Win32.System.Com.StructuredStorage
SetConvertStg=Windows.Win32.System.Com.StructuredStorage
WriteFmtUserTypeStg=Windows.Win32.System.Com.StructuredStorage
OLESTREAM=Windows.Win32.System.Com.StructuredStorage
OLESTREAMVTBL=Windows.Win32.System.Com.StructuredStorage
BSTRBLOB=Windows.Win32.System.Com.StructuredStorage
# endregion ole2.h
# region oleauto.h
DosDateTimeToVariantTime=Windows.Win32.System.Variant
SysAddRefString=Windows.Win32.Foundation
SysAllocString=Windows.Win32.Foundation
SysAllocStringByteLen=Windows.Win32.Foundation
SysAllocStringLen=Windows.Win32.Foundation
SysFreeString=Windows.Win32.Foundation
SysReAllocString=Windows.Win32.Foundation
SysReAllocStringLen=Windows.Win32.Foundation
SysReleaseString=Windows.Win32.Foundation
SysStringByteLen=Windows.Win32.Foundation
SysStringLen=Windows.Win32.Foundation
SystemTimeToVariantTime=Windows.Win32.System.Variant
VariantChangeType=Windows.Win32.System.Variant
VariantChangeTypeEx=Windows.Win32.System.Variant
VariantClear=Windows.Win32.System.Variant
VariantCopy=Windows.Win32.System.Variant
VariantCopyInd=Windows.Win32.System.Variant
VariantInit=Windows.Win32.System.Variant
VariantTimeToDosDateTime=Windows.Win32.System.Variant
VariantTimeToSystemTime=Windows.Win32.System.Variant
# endregion oleauto.h
# region oledb.h
DBID=Windows.Win32.Storage.IndexServer
DBKINDENUM=Windows.Win32.Storage.IndexServer
# endregion oledb.h
# region processenv.h
GetStdHandle=Windows.Win32.System.Console
SearchPathA=Windows.Win32.Storage.FileSystem
SearchPathW=Windows.Win32.Storage.FileSystem
SetStdHandle=Windows.Win32.System.Console
SetStdHandleEx=Windows.Win32.System.Console
# endregion processenv.h
# region processthreadsapi.h
APC_CALLBACK_DATA=Windows.Win32.System.Diagnostics.Debug
FlushInstructionCache=Windows.Win32.System.Diagnostics.Debug
GetThreadContext=Windows.Win32.System.Diagnostics.Debug
SetThreadContext=Windows.Win32.System.Diagnostics.Debug
ProcessIdToSessionId=Windows.Win32.System.RemoteDesktop
# endregion processthreadsapi.h
# region propsys.h
PropVariantToWinRTPropertyValue=Windows.Win32.System.Com.StructuredStorage
WinRTPropertyValueToPropVariant=Windows.Win32.System.Com.StructuredStorage
# endregion propsys.h
# region propvarutil.h
ClearPropVariantArray=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromBooleanVector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromBuffer=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromCLSID=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromDoubleVector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromFileTime=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromFileTimeVector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromGUIDAsString=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromInt16Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromInt32Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromInt64Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromPropVariantVectorElem=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromResource=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromStringAsVector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromStringVector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromStrRet=Windows.Win32.UI.Shell
InitPropVariantFromUInt16Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromUInt32Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantFromUInt64Vector=Windows.Win32.System.Com.StructuredStorage
InitPropVariantVectorFromPropVariant=Windows.Win32.System.Com.StructuredStorage
InitVariantFromStrRet=Windows.Win32.UI.Shell
PROPVAR_CHANGE_FLAGS=Windows.Win32.System.Com.StructuredStorage
PROPVAR_COMPARE_FLAGS=Windows.Win32.System.Com.StructuredStorage
PROPVAR_COMPARE_UNIT=Windows.Win32.System.Com.StructuredStorage
PropVariantChangeType=Windows.Win32.System.Com.StructuredStorage
PropVariantCompareEx=Windows.Win32.System.Com.StructuredStorage
PropVariantGetBooleanElem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetDoubleElem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetElementCount=Windows.Win32.System.Com.StructuredStorage
PropVariantGetFileTimeElem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetInt16Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetInt32Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetInt64Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetStringElem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetUInt16Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetUInt32Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantGetUInt64Elem=Windows.Win32.System.Com.StructuredStorage
PropVariantToBoolean=Windows.Win32.System.Com.StructuredStorage
PropVariantToBooleanVector=Windows.Win32.System.Com.StructuredStorage
PropVariantToBooleanVectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToBooleanWithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToBSTR=Windows.Win32.System.Com.StructuredStorage
PropVariantToBuffer=Windows.Win32.System.Com.StructuredStorage
PropVariantToDouble=Windows.Win32.System.Com.StructuredStorage
PropVariantToDoubleVector=Windows.Win32.System.Com.StructuredStorage
PropVariantToDoubleVectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToDoubleWithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToFileTime=Windows.Win32.System.Com.StructuredStorage
PropVariantToFileTimeVector=Windows.Win32.System.Com.StructuredStorage
PropVariantToFileTimeVectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToGUID=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt16=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt16Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt16VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt16WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt32=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt32Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt32VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt32WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt64=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt64Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt64VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToInt64WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToString=Windows.Win32.System.Com.StructuredStorage
PropVariantToStringAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToStringVector=Windows.Win32.System.Com.StructuredStorage
PropVariantToStringVectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToStringWithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToStrRet=Windows.Win32.UI.Shell
PropVariantToUInt16=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt16Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt16VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt16WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt32=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt32Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt32VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt32WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt64=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt64Vector=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt64VectorAlloc=Windows.Win32.System.Com.StructuredStorage
PropVariantToUInt64WithDefault=Windows.Win32.System.Com.StructuredStorage
PropVariantToVariant=Windows.Win32.System.Com.StructuredStorage
StgDeserializePropVariant=Windows.Win32.System.Com.StructuredStorage
StgSerializePropVariant=Windows.Win32.System.Com.StructuredStorage
VariantToPropVariant=Windows.Win32.System.Com.StructuredStorage
VariantToStrRet=Windows.Win32.UI.Shell
# endregion propvarutil.h
# region qos.h
QOS=Windows.Win32.Networking.WinSock
FLOWSPEC=Windows.Win32.Networking.WinSock
# endregion qos.h
# region reconcil.h
INotifyReplica=Windows.Win32.UI.Shell
# endregion reconcil.h
# region richedit.h
WM_CONTEXTMENU=Windows.Win32.UI.WindowsAndMessaging
WM_UNICHAR=Windows.Win32.UI.WindowsAndMessaging
WM_PRINTCLIENT=Windows.Win32.UI.WindowsAndMessaging
WM_NOTIFY=Windows.Win32.UI.WindowsAndMessaging
# endregion
# region securitybaseapi.h
CveEventWrite=Windows.Win32.System.Diagnostics.Etw
# endregion securitybaseapi.h
# region shellapi.h
SHGetPropertyStoreForWindow=Windows.Win32.UI.Shell.PropertiesSystem
# endregion shellapi.h
# region shellscalingapi.h
GetDpiForMonitor=Windows.Win32.UI.HiDpi
GetProcessDpiAwareness=Windows.Win32.UI.HiDpi
MONITOR_DPI_TYPE=Windows.Win32.UI.HiDpi
PROCESS_DPI_AWARENESS=Windows.Win32.UI.HiDpi
SetProcessDpiAwareness=Windows.Win32.UI.HiDpi
# endregion shellscalingapi.h
# region shlobj.h
IActiveDesktopP=Windows.Win32.UI.LegacyWindowsEnvironmentFeatures
IADesktopP2=Windows.Win32.UI.LegacyWindowsEnvironmentFeatures
DoPrivacyDlg=Windows.Win32.Web.MsHtml
# endregion shlobj.h
# region shlobj_core.h
PROPERTYUI_FLAGS=Windows.Win32.UI.Shell.PropertiesSystem
PROPERTYUI_NAME_FLAGS=Windows.Win32.UI.Shell.PropertiesSystem
PROPERTYUI_FORMAT_FLAGS=Windows.Win32.UI.Shell.PropertiesSystem
IPropertyUI=Windows.Win32.UI.Shell.PropertiesSystem
PDOPSTATUS=Windows.Win32.UI.Shell.PropertiesSystem
PifMgr_CloseProperties=Windows.Win32.UI.Shell.PropertiesSystem
PifMgr_GetProperties=Windows.Win32.UI.Shell.PropertiesSystem
PifMgr_OpenProperties=Windows.Win32.UI.Shell.PropertiesSystem
PifMgr_SetProperties=Windows.Win32.UI.Shell.PropertiesSystem
PLACEHOLDER_STATES=Windows.Win32.UI.Shell.PropertiesSystem
PROPPRG=Windows.Win32.UI.Shell.PropertiesSystem
SHGetPropertyStoreFromIDList=Windows.Win32.UI.Shell.PropertiesSystem
SHGetPropertyStoreFromParsingName=Windows.Win32.UI.Shell.PropertiesSystem
SHPropStgCreate=Windows.Win32.UI.Shell.PropertiesSystem
SHPropStgReadMultiple=Windows.Win32.UI.Shell.PropertiesSystem
SHPropStgWriteMultiple=Windows.Win32.UI.Shell.PropertiesSystem
SYNC_TRANSFER_STATUS=Windows.Win32.UI.Shell.PropertiesSystem
# endregion shlobj_core.h
# region shobjidl.h
SHAddDefaultPropertiesByExt=Windows.Win32.UI.Shell.PropertiesSystem
SYNC_ENGINE_STATE_FLAGS=Windows.Win32.UI.Shell.PropertiesSystem
# endregion shobjidl.h
# region StructuredQueryCondition.h.h
CONDITION_TYPE=Windows.Win32.System.Search.Common
CONDITION_OPERATION=Windows.Win32.System.Search.Common
# endregion StructuredQueryCondition.h.h
# region strmif.h
AM_MEDIA_TYPE=Windows.Win32.Media.MediaFoundation
TIMECODE_SAMPLE=Windows.Win32.Media
TIMECODE=Windows.Win32.Media
VIDEOENCODER_BITRATE_MODE=Windows.Win32.Media.DirectShow
IKsPropertySet=Windows.Win32.Media.KernelStreaming
IReferenceClock=Windows.Win32.Media
IReferenceClock2=Windows.Win32.Media
IReferenceClockTimerControl=Windows.Win32.Media
# endregion strmif.h
# region sysinfoapi.h
InstallELAMCertificateInfo=Windows.Win32.System.Antimalware
# endregion sysinfoapi.h
# region textserv.h
IRicheditWindowlessAccessibility=Windows.Win32.UI.Accessibility
IRichEditUiaInformation=Windows.Win32.UI.Accessibility
# endregion textserv.h
# region processthreadsapi.h
GetSystemCpuSetInformation=Windows.Win32.System.SystemInformation
# endregion processthreadsapi.h
# region tvout.h
VIDEOPARAMETERS=Windows.Win32.Devices.Display
# endregion tvout.h
# region unknwnbase.h
IUnknown_AddRef_Proxy=Windows.Win32.System.Rpc
IUnknown_QueryInterface_Proxy=Windows.Win32.System.Rpc
IUnknown_Release_Proxy=Windows.Win32.System.Rpc
# endregion unknwnbase.h
# region urlmon.h
IBindStatusCallback=Windows.Win32.System.Com
IBindStatusCallbackEx=Windows.Win32.System.Com
IBindHost=Windows.Win32.System.Com
IBinding=Windows.Win32.System.Com
IUri=Windows.Win32.System.Com
IUriBuilder=Windows.Win32.System.Com
Uri_PROPERTY=Windows.Win32.System.Com
CreateUri=Windows.Win32.System.Com
CreateUriWithFragment=Windows.Win32.System.Com
CreateUriFromMultiByteString=Windows.Win32.System.Com
CreateIUriBuilder=Windows.Win32.System.Com
BINDINFO=Windows.Win32.System.Com
BINDINFOF=Windows.Win32.System.Com
IAuthenticate=Windows.Win32.System.Com
IAuthenticateEx=Windows.Win32.System.Com
AUTHENTICATEINFO=Windows.Win32.System.Com
# endregion urlmon.h
# region userenv.h
CreateAppContainerProfile=Windows.Win32.Security.Isolation
CreateEnvironmentBlock=Windows.Win32.System.Environment
CreateProfile=Windows.Win32.UI.Shell
DeleteAppContainerProfile=Windows.Win32.Security.Isolation
DeleteProfileA=Windows.Win32.UI.Shell
DeleteProfileW=Windows.Win32.UI.Shell
DeriveAppContainerSidFromAppContainerName=Windows.Win32.Security.Isolation
DeriveRestrictedAppContainerSidFromAppContainerSidAndRestrictedName=Windows.Win32.Security.Isolation
DestroyEnvironmentBlock=Windows.Win32.System.Environment
ExpandEnvironmentStringsForUserA=Windows.Win32.System.Environment
ExpandEnvironmentStringsForUserW=Windows.Win32.System.Environment
GetAllUsersProfileDirectoryA=Windows.Win32.UI.Shell
GetAllUsersProfileDirectoryW=Windows.Win32.UI.Shell
GetAppContainerFolderPath=Windows.Win32.Security.Isolation
GetAppContainerRegistryLocation=Windows.Win32.Security.Isolation
GetDefaultUserProfileDirectoryA=Windows.Win32.UI.Shell
GetDefaultUserProfileDirectoryW=Windows.Win32.UI.Shell
GetProfilesDirectoryA=Windows.Win32.UI.Shell
GetProfilesDirectoryW=Windows.Win32.UI.Shell
GetProfileType=Windows.Win32.UI.Shell
GetUserProfileDirectoryA=Windows.Win32.UI.Shell
GetUserProfileDirectoryW=Windows.Win32.UI.Shell
LoadUserProfileA=Windows.Win32.UI.Shell
LoadUserProfileW=Windows.Win32.UI.Shell
UnloadUserProfile=Windows.Win32.UI.Shell
# endregion userenv.h
# region uxtheme.h
OpenThemeDataForDpi=Windows.Win32.UI.HiDpi
# endregion uxtheme.h
# region vidcap.h
IKsNodeControl=Windows.Win32.Media.KernelStreaming
IKsTopologyInfo=Windows.Win32.Media.KernelStreaming
# endregion vidcap.h
# region winbase.h
AccessCheckAndAuditAlarmA=Windows.Win32.Security
AccessCheckByTypeAndAuditAlarmA=Windows.Win32.Security
AccessCheckByTypeResultListAndAuditAlarmA=Windows.Win32.Security
AccessCheckByTypeResultListAndAuditAlarmByHandleA=Windows.Win32.Security
ACTCTX_SECTION_KEYED_DATA=Windows.Win32.System.ApplicationInstallationAndServicing
ACTCTXA=Windows.Win32.System.ApplicationInstallationAndServicing
ACTCTXW=Windows.Win32.System.ApplicationInstallationAndServicing
ActivateActCtx=Windows.Win32.System.ApplicationInstallationAndServicing
AddAtomA=Windows.Win32.System.DataExchange
AddAtomW=Windows.Win32.System.DataExchange
AddConditionalAce=Windows.Win32.Security
AddIntegrityLabelToBoundaryDescriptor=Windows.Win32.System.Threading
AddRefActCtx=Windows.Win32.System.ApplicationInstallationAndServicing
AddSecureMemoryCacheCallback=Windows.Win32.System.Memory
ALL_PROCESSOR_GROUPS=Windows.Win32.System.Threading
ApplicationRecoveryFinished=Windows.Win32.System.Recovery
ApplicationRecoveryInProgress=Windows.Win32.System.Recovery
BackupEventLogA=Windows.Win32.System.EventLog
BackupEventLogW=Windows.Win32.System.EventLog
BackupRead=Windows.Win32.Storage.FileSystem
BackupSeek=Windows.Win32.Storage.FileSystem
BackupWrite=Windows.Win32.Storage.FileSystem
BeginUpdateResourceA=Windows.Win32.System.LibraryLoader
BeginUpdateResourceW=Windows.Win32.System.LibraryLoader
BuildCommDCBA=Windows.Win32.Devices.Communication
BuildCommDCBAndTimeoutsA=Windows.Win32.Devices.Communication
BuildCommDCBAndTimeoutsW=Windows.Win32.Devices.Communication
BuildCommDCBW=Windows.Win32.Devices.Communication
CallNamedPipeA=Windows.Win32.System.Pipes
CancelTimerQueueTimer=Windows.Win32.System.Threading
CheckNameLegalDOS8Dot3A=Windows.Win32.Storage.FileSystem
CheckNameLegalDOS8Dot3W=Windows.Win32.Storage.FileSystem
ClearCommBreak=Windows.Win32.Devices.Communication
ClearCommError=Windows.Win32.Devices.Communication
ClearEventLogA=Windows.Win32.System.EventLog
ClearEventLogW=Windows.Win32.System.EventLog
CloseEncryptedFileRaw=Windows.Win32.Storage.FileSystem
CloseEventLog=Windows.Win32.System.EventLog
COMMCONFIG=Windows.Win32.Devices.Communication
CommConfigDialogA=Windows.Win32.Devices.Communication
CommConfigDialogW=Windows.Win32.Devices.Communication
COMMPROP=Windows.Win32.Devices.Communication
COMMTIMEOUTS=Windows.Win32.Devices.Communication
COMSTAT=Windows.Win32.Devices.Communication
ConvertFiberToThread=Windows.Win32.System.Threading
ConvertThreadToFiber=Windows.Win32.System.Threading
ConvertThreadToFiberEx=Windows.Win32.System.Threading
CopyContext=Windows.Win32.System.Diagnostics.Debug
COPYFILE2_COPY_PHASE=Windows.Win32.Storage.FileSystem
COPYFILE2_EXTENDED_PARAMETERS_V2=Windows.Win32.Storage.FileSystem
COPYFILE2_EXTENDED_PARAMETERS=Windows.Win32.Storage.FileSystem
COPYFILE2_IO_CYCLE_SIZE_MAX=Windows.Win32.Storage.FileSystem
COPYFILE2_IO_CYCLE_SIZE_MIN=Windows.Win32.Storage.FileSystem
COPYFILE2_IO_RATE_MIN=Windows.Win32.Storage.FileSystem
COPYFILE2_MESSAGE_ACTION=Windows.Win32.Storage.FileSystem
COPYFILE2_MESSAGE_COPY_OFFLOAD=Windows.Win32.Storage.FileSystem
COPYFILE2_MESSAGE_TYPE=Windows.Win32.Storage.FileSystem
COPYFILE2_MESSAGE=Windows.Win32.Storage.FileSystem
CopyFile2=Windows.Win32.Storage.FileSystem
CopyFileA=Windows.Win32.Storage.FileSystem
CopyFileExA=Windows.Win32.Storage.FileSystem
CopyFileExW=Windows.Win32.Storage.FileSystem
CopyFileTransactedA=Windows.Win32.Storage.FileSystem
CopyFileTransactedW=Windows.Win32.Storage.FileSystem
CopyFileW=Windows.Win32.Storage.FileSystem
CreateActCtxA=Windows.Win32.System.ApplicationInstallationAndServicing
CreateActCtxW=Windows.Win32.System.ApplicationInstallationAndServicing
CreateBoundaryDescriptorA=Windows.Win32.System.Threading
CreateDirectoryExA=Windows.Win32.Storage.FileSystem
CreateDirectoryExW=Windows.Win32.Storage.FileSystem
CreateDirectoryTransactedA=Windows.Win32.Storage.FileSystem
CreateDirectoryTransactedW=Windows.Win32.Storage.FileSystem
CreateFiber=Windows.Win32.System.Threading
CreateFiberEx=Windows.Win32.System.Threading
CreateFileMappingA=Windows.Win32.System.Memory
CreateFileMappingNumaA=Windows.Win32.System.Memory
CreateFileTransactedA=Windows.Win32.Storage.FileSystem
CreateFileTransactedW=Windows.Win32.Storage.FileSystem
CreateHardLinkA=Windows.Win32.Storage.FileSystem
CreateHardLinkTransactedA=Windows.Win32.Storage.FileSystem
CreateHardLinkTransactedW=Windows.Win32.Storage.FileSystem
CreateHardLinkW=Windows.Win32.Storage.FileSystem
CreateJobObjectA=Windows.Win32.System.JobObjects
CreateJobSet=Windows.Win32.System.JobObjects
CreateMailslotA=Windows.Win32.System.Mailslots
CreateMailslotW=Windows.Win32.System.Mailslots
CreateNamedPipeA=Windows.Win32.System.Pipes
CreatePrivateNamespaceA=Windows.Win32.System.Threading
CreateProcessWithLogonW=Windows.Win32.System.Threading
CreateProcessWithTokenW=Windows.Win32.System.Threading
CreateSemaphoreA=Windows.Win32.System.Threading
CreateSemaphoreExA=Windows.Win32.System.Threading
CreateSymbolicLinkA=Windows.Win32.Storage.FileSystem
CreateSymbolicLinkTransactedA=Windows.Win32.Storage.FileSystem
CreateSymbolicLinkTransactedW=Windows.Win32.Storage.FileSystem
CreateSymbolicLinkW=Windows.Win32.Storage.FileSystem
CreateTapePartition=Windows.Win32.Storage.FileSystem
CreateUmsCompletionList=Windows.Win32.System.Threading
CreateUmsThreadContext=Windows.Win32.System.Threading
CreateWaitableTimerA=Windows.Win32.System.Threading
CreateWaitableTimerExA=Windows.Win32.System.Threading
DCB=Windows.Win32.Devices.Communication
DeactivateActCtx=Windows.Win32.System.ApplicationInstallationAndServicing
DebugBreakProcess=Windows.Win32.System.Diagnostics.Debug
DebugSetProcessKillOnExit=Windows.Win32.System.Diagnostics.Debug
DecryptFileA=Windows.Win32.Storage.FileSystem
DecryptFileW=Windows.Win32.Storage.FileSystem
DefineDosDeviceA=Windows.Win32.Storage.FileSystem
DeleteAtom=Windows.Win32.System.DataExchange
DeleteFiber=Windows.Win32.System.Threading
DeleteFileTransactedA=Windows.Win32.Storage.FileSystem
DeleteFileTransactedW=Windows.Win32.Storage.FileSystem
DeleteTimerQueue=Windows.Win32.System.Threading
DeleteUmsCompletionList=Windows.Win32.System.Threading
DeleteUmsThreadContext=Windows.Win32.System.Threading
DeleteVolumeMountPointA=Windows.Win32.Storage.FileSystem
DEP_SYSTEM_POLICY_TYPE=Windows.Win32.System.SystemInformation
DequeueUmsCompletionListItems=Windows.Win32.System.Threading
DeregisterEventSource=Windows.Win32.System.EventLog
DestroyThreadpoolEnvironment=Windows.Win32.System.Threading
DisableThreadProfiling=Windows.Win32.System.Performance.HardwareCounterProfiling
EnableThreadProfiling=Windows.Win32.System.Performance.HardwareCounterProfiling
EncryptFileA=Windows.Win32.Storage.FileSystem
EncryptFileW=Windows.Win32.Storage.FileSystem
EndUpdateResourceA=Windows.Win32.System.LibraryLoader
EndUpdateResourceW=Windows.Win32.System.LibraryLoader
EnterUmsSchedulingMode=Windows.Win32.System.Threading
EnumResourceLanguagesA=Windows.Win32.System.LibraryLoader
EnumResourceLanguagesW=Windows.Win32.System.LibraryLoader
EnumResourceNamesA=Windows.Win32.System.LibraryLoader
EnumResourceTypesA=Windows.Win32.System.LibraryLoader
EnumResourceTypesW=Windows.Win32.System.LibraryLoader
EraseTape=Windows.Win32.Storage.FileSystem
EscapeCommFunction=Windows.Win32.Devices.Communication
EVENTLOG_FULL_INFORMATION=Windows.Win32.System.EventLog
ExecuteUmsThread=Windows.Win32.System.Threading
FatalExit=Windows.Win32.System.Diagnostics.Debug
FILE_ALIGNMENT_INFO=Windows.Win32.Storage.FileSystem
FILE_ALLOCATION_INFO=Windows.Win32.Storage.FileSystem
FILE_ATTRIBUTE_TAG_INFO=Windows.Win32.Storage.FileSystem
FILE_BASIC_INFO=Windows.Win32.Storage.FileSystem
FILE_CASE_SENSITIVE_INFO=Windows.Win32.Storage.FileSystem
FILE_COMPRESSION_INFO=Windows.Win32.Storage.FileSystem
FILE_DISPOSITION_INFO_EX=Windows.Win32.Storage.FileSystem
FILE_DISPOSITION_INFO=Windows.Win32.Storage.FileSystem
FILE_END_OF_FILE_INFO=Windows.Win32.Storage.FileSystem
FILE_FLUSH_MODE=Windows.Win32.Storage.FileSystem
FILE_FULL_DIR_INFO=Windows.Win32.Storage.FileSystem
FILE_ID_BOTH_DIR_INFO=Windows.Win32.Storage.FileSystem
FILE_ID_DESCRIPTOR=Windows.Win32.Storage.FileSystem
FILE_ID_EXTD_DIR_INFO=Windows.Win32.Storage.FileSystem
FILE_ID_INFO=Windows.Win32.Storage.FileSystem
FILE_ID_TYPE=Windows.Win32.Storage.FileSystem
FILE_IO_PRIORITY_HINT_INFO=Windows.Win32.Storage.FileSystem
FILE_NAME_INFO=Windows.Win32.Storage.FileSystem
FILE_REMOTE_PROTOCOL_INFO=Windows.Win32.Storage.FileSystem
FILE_RENAME_INFO=Windows.Win32.Storage.FileSystem
FILE_STANDARD_INFO=Windows.Win32.Storage.FileSystem
FILE_STORAGE_INFO=Windows.Win32.Storage.FileSystem
FILE_STREAM_INFO=Windows.Win32.Storage.FileSystem
FILE_WRITE_FLAGS=Windows.Win32.Storage.FileSystem
FileEncryptionStatusA=Windows.Win32.Storage.FileSystem
FileEncryptionStatusW=Windows.Win32.Storage.FileSystem
FindActCtxSectionGuid=Windows.Win32.System.ApplicationInstallationAndServicing
FindActCtxSectionStringA=Windows.Win32.System.ApplicationInstallationAndServicing
FindActCtxSectionStringW=Windows.Win32.System.ApplicationInstallationAndServicing
FindAtomA=Windows.Win32.System.DataExchange
FindAtomW=Windows.Win32.System.DataExchange
FindFirstFileNameTransactedW=Windows.Win32.Storage.FileSystem
FindFirstFileTransactedA=Windows.Win32.Storage.FileSystem
FindFirstFileTransactedW=Windows.Win32.Storage.FileSystem
FindFirstStreamTransactedW=Windows.Win32.Storage.FileSystem
FindFirstVolumeA=Windows.Win32.Storage.FileSystem
FindFirstVolumeMountPointA=Windows.Win32.Storage.FileSystem
FindFirstVolumeMountPointW=Windows.Win32.Storage.FileSystem
FindNextVolumeA=Windows.Win32.Storage.FileSystem
FindNextVolumeMountPointA=Windows.Win32.Storage.FileSystem
FindNextVolumeMountPointW=Windows.Win32.Storage.FileSystem
FindResourceA=Windows.Win32.System.LibraryLoader
FindResourceExA=Windows.Win32.System.LibraryLoader
FindVolumeMountPointClose=Windows.Win32.Storage.FileSystem
FormatMessageA=Windows.Win32.System.Diagnostics.Debug
FormatMessageW=Windows.Win32.System.Diagnostics.Debug
GetActiveProcessorCount=Windows.Win32.System.Threading
GetActiveProcessorGroupCount=Windows.Win32.System.Threading
GetApplicationRecoveryCallback=Windows.Win32.System.Recovery
GetApplicationRestartSettings=Windows.Win32.System.Recovery
GetAtomNameA=Windows.Win32.System.DataExchange
GetAtomNameW=Windows.Win32.System.DataExchange
GetBinaryTypeA=Windows.Win32.Storage.FileSystem
GetBinaryTypeW=Windows.Win32.Storage.FileSystem
GetCommConfig=Windows.Win32.Devices.Communication
GetCommMask=Windows.Win32.Devices.Communication
GetCommModemStatus=Windows.Win32.Devices.Communication
GetCommPorts=Windows.Win32.Devices.Communication
GetCommProperties=Windows.Win32.Devices.Communication
GetCommState=Windows.Win32.Devices.Communication
GetCommTimeouts=Windows.Win32.Devices.Communication
GetCompressedFileSizeTransactedA=Windows.Win32.Storage.FileSystem
GetCompressedFileSizeTransactedW=Windows.Win32.Storage.FileSystem
GetCurrentActCtx=Windows.Win32.System.ApplicationInstallationAndServicing
GetCurrentUmsThread=Windows.Win32.System.Threading
GetDefaultCommConfigA=Windows.Win32.Devices.Communication
GetDefaultCommConfigW=Windows.Win32.Devices.Communication
GetDevicePowerState=Windows.Win32.System.Power
GetDllDirectoryA=Windows.Win32.System.LibraryLoader
GetDllDirectoryW=Windows.Win32.System.LibraryLoader
GetEnabledXStateFeatures=Windows.Win32.System.Diagnostics.Debug
GetEventLogInformation=Windows.Win32.System.EventLog
GetFileAttributesTransactedA=Windows.Win32.Storage.FileSystem
GetFileAttributesTransactedW=Windows.Win32.Storage.FileSystem
GetFileBandwidthReservation=Windows.Win32.Storage.FileSystem
GetFileInformationByHandleEx=Windows.Win32.Storage.FileSystem
GetFileSecurityA=Windows.Win32.Security
GetFirmwareType=Windows.Win32.System.SystemInformation
GetFullPathNameTransactedA=Windows.Win32.Storage.FileSystem
GetFullPathNameTransactedW=Windows.Win32.Storage.FileSystem
GetLogicalDriveStringsA=Windows.Win32.Storage.FileSystem
GetLongPathNameTransactedA=Windows.Win32.Storage.FileSystem
GetLongPathNameTransactedW=Windows.Win32.Storage.FileSystem
GetMailslotInfo=Windows.Win32.System.Mailslots
GetMaximumProcessorCount=Windows.Win32.System.Threading
GetMaximumProcessorGroupCount=Windows.Win32.System.Threading