-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrep_for__Null_terminated_.txt
4009 lines (4009 loc) · 852 KB
/
grep_for__Null_terminated_.txt
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
C:\Program Files (x86)\Windows Kits\8.1\Include>%grep% -r -n -I _Null_terminated_ . >> "C:\Users\Alexander Riccio\grep_for__Null_terminated_.txt"
./km/acpiioct.h:90: _Null_terminated_
./km/acpiioct.h:197: _Null_terminated_
./km/acpiioct.h:203: _Null_terminated_
./km/acpiioct.h:213: _Null_terminated_
./km/acpiioct.h:232: _Null_terminated_
./km/acpiioct.h:240: _Null_terminated_
./km/miniport.h:423:typedef _Null_terminated_ WCHAR *NWPSTR, *LPWSTR, *PWSTR;
./km/miniport.h:424:typedef _Null_terminated_ PWSTR *PZPWSTR;
./km/miniport.h:425:typedef _Null_terminated_ CONST PWSTR *PCZPWSTR;
./km/miniport.h:426:typedef _Null_terminated_ WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
./km/miniport.h:427:typedef _Null_terminated_ CONST WCHAR *LPCWSTR, *PCWSTR;
./km/miniport.h:428:typedef _Null_terminated_ PCWSTR *PZPCWSTR;
./km/miniport.h:429:typedef _Null_terminated_ CONST PCWSTR *PCZPCWSTR;
./km/miniport.h:430:typedef _Null_terminated_ CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
./km/miniport.h:492:typedef _Null_terminated_ CHAR *NPSTR, *LPSTR, *PSTR;
./km/miniport.h:493:typedef _Null_terminated_ PSTR *PZPSTR;
./km/miniport.h:494:typedef _Null_terminated_ CONST PSTR *PCZPSTR;
./km/miniport.h:495:typedef _Null_terminated_ CONST CHAR *LPCSTR, *PCSTR;
./km/miniport.h:496:typedef _Null_terminated_ PCSTR *PZPCSTR;
./km/miniport.h:497:typedef _Null_terminated_ CONST PCSTR *PCZPCSTR;
./km/minitape.h:430:typedef _Null_terminated_ WCHAR *NWPSTR, *LPWSTR, *PWSTR;
./km/minitape.h:431:typedef _Null_terminated_ PWSTR *PZPWSTR;
./km/minitape.h:432:typedef _Null_terminated_ CONST PWSTR *PCZPWSTR;
./km/minitape.h:433:typedef _Null_terminated_ WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
./km/minitape.h:434:typedef _Null_terminated_ CONST WCHAR *LPCWSTR, *PCWSTR;
./km/minitape.h:435:typedef _Null_terminated_ PCWSTR *PZPCWSTR;
./km/minitape.h:436:typedef _Null_terminated_ CONST PCWSTR *PCZPCWSTR;
./km/minitape.h:437:typedef _Null_terminated_ CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
./km/minitape.h:499:typedef _Null_terminated_ CHAR *NPSTR, *LPSTR, *PSTR;
./km/minitape.h:500:typedef _Null_terminated_ PSTR *PZPSTR;
./km/minitape.h:501:typedef _Null_terminated_ CONST PSTR *PCZPSTR;
./km/minitape.h:502:typedef _Null_terminated_ CONST CHAR *LPCSTR, *PCSTR;
./km/minitape.h:503:typedef _Null_terminated_ PCSTR *PZPCSTR;
./km/minitape.h:504:typedef _Null_terminated_ CONST PCSTR *PCZPCSTR;
./km/ndis.h:3592: _In_ _Null_terminated_ PUCHAR Source
./km/ntstrsafe.h:173:typedef _Null_terminated_ char* NTSTRSAFE_PSTR;
./km/ntstrsafe.h:174:typedef _Null_terminated_ const char* NTSTRSAFE_PCSTR;
./km/ntstrsafe.h:175:typedef _Null_terminated_ wchar_t* NTSTRSAFE_PWSTR;
./km/ntstrsafe.h:176:typedef _Null_terminated_ const wchar_t* NTSTRSAFE_PCWSTR;
./km/ntstrsafe.h:177:typedef _Null_terminated_ const wchar_t UNALIGNED* NTSTRSAFE_PCUWSTR;
./shared/minwindef.h:57:typedef _Null_terminated_ char *PSZ;
./shared/no_sal2.h:97:#ifdef _Null_terminated_
./shared/no_sal2.h:98:#undef _Null_terminated_
./shared/no_sal2.h:100:#define _Null_terminated_
./shared/no_sal2.h:1004:#define _Pre_z_ _Pre_ _Null_terminated_
./shared/no_sal2.h:1006:#define _Post_z_ _Post_ _Null_terminated_
./shared/ntdef.h:464:typedef _Null_terminated_ WCHAR *NWPSTR, *LPWSTR, *PWSTR;
./shared/ntdef.h:465:typedef _Null_terminated_ PWSTR *PZPWSTR;
./shared/ntdef.h:466:typedef _Null_terminated_ CONST PWSTR *PCZPWSTR;
./shared/ntdef.h:467:typedef _Null_terminated_ WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
./shared/ntdef.h:468:typedef _Null_terminated_ CONST WCHAR *LPCWSTR, *PCWSTR;
./shared/ntdef.h:469:typedef _Null_terminated_ PCWSTR *PZPCWSTR;
./shared/ntdef.h:470:typedef _Null_terminated_ CONST PCWSTR *PCZPCWSTR;
./shared/ntdef.h:471:typedef _Null_terminated_ CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
./shared/ntdef.h:533:typedef _Null_terminated_ CHAR *NPSTR, *LPSTR, *PSTR;
./shared/ntdef.h:534:typedef _Null_terminated_ PSTR *PZPSTR;
./shared/ntdef.h:535:typedef _Null_terminated_ CONST PSTR *PCZPSTR;
./shared/ntdef.h:536:typedef _Null_terminated_ CONST CHAR *LPCSTR, *PCSTR;
./shared/ntdef.h:537:typedef _Null_terminated_ PCSTR *PZPCSTR;
./shared/ntdef.h:538:typedef _Null_terminated_ CONST PCSTR *PCZPCSTR;
./shared/ntdef.h:1379:typedef _Null_terminated_ CHAR *PSZ;
./shared/ntdef.h:1380:typedef _Null_terminated_ CONST char *PCSZ;
./shared/rpcdce.h:57:typedef _Null_terminated_ unsigned char __RPC_FAR * RPC_CSTR;
./shared/rpcdce.h:60:typedef _Null_terminated_ wchar_t __RPC_FAR * RPC_WSTR;
./shared/rpcdce.h:61:typedef _Null_terminated_ const wchar_t * RPC_CWSTR;
./shared/rpcdce.h:63:typedef _Null_terminated_ unsigned short __RPC_FAR * RPC_WSTR;
./shared/rpcdce.h:64:typedef _Null_terminated_ const unsigned short * RPC_CWSTR;
./shared/rpcsal.h:162:#define __RPC__in_string _SAL1_2_Source_(__RPC__in_string, (), __RPC__in _Pre_ _Null_terminated_)
./shared/rpcsal.h:165:#define __RPC__in_ecount_full_string(size) _SAL1_2_Source_(__RPC__in_ecount_full_string, (size), __RPC__in_ecount_full(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:169:#define __RPC__in_xcount_full_string(size) _SAL1_2_Source_(__RPC__in_xcount_full_string, (size), __RPC__in_ecount_full(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:174:#define __RPC__deref_in_string _SAL1_2_Source_(__RPC__deref_in_string, (), __RPC__deref_in _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:176:#define __RPC__deref_in_opt_string _SAL1_2_Source_(__RPC__deref_in_opt_string, (), __RPC__deref_in_opt _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:178:#define __RPC__deref_opt_in_string _SAL1_2_Source_(__RPC__deref_opt_in_string, (), __RPC__deref_opt_in _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:180:#define __RPC__deref_opt_in_opt_string _SAL1_2_Source_(__RPC__deref_opt_in_opt_string, (), __RPC__deref_opt_in_opt _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:185:#define __RPC__deref_in_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_in_ecount_full_opt_string, (size), __RPC__deref_in_ecount_full_opt(size) _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:186:#define __RPC__deref_in_ecount_full_string(size) _SAL1_2_Source_(__RPC__deref_in_ecount_full_string, (size), __RPC__deref_in_ecount_full(size) _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:188:#define __RPC__deref_in_ecount_opt_string(size) _SAL1_2_Source_(__RPC__deref_in_ecount_opt_string, (size), __RPC__deref_in_ecount_opt(size) _At_(*_Curr_, _Pre_ _Null_terminated_))
./shared/rpcsal.h:203:#define __RPC__out_ecount_string(size) _SAL1_2_Source_(__RPC__out_ecount_string, (size), __RPC__out_ecount(size) _Post_ _Null_terminated_)
./shared/rpcsal.h:206:#define __RPC__out_ecount_full_string(size) _SAL1_2_Source_(__RPC__out_ecount_full_string, (size), __RPC__out_ecount_full(size) _Post_ _Null_terminated_)
./shared/rpcsal.h:208:#define __RPC__out_xcount_string(size) _SAL1_2_Source_(__RPC__out_xcount_string, (size), __RPC__out _Post_ _Null_terminated_)
./shared/rpcsal.h:211:#define __RPC__out_xcount_full_string(size) _SAL1_2_Source_(__RPC__out_xcount_full_string, (size), __RPC__out _Post_ _Null_terminated_)
./shared/rpcsal.h:215:#define __RPC__inout_string _SAL1_2_Source_(__RPC__inout_string, (), __RPC__inout _Pre_ _Null_terminated_ _Post_ _Null_terminated_)
./shared/rpcsal.h:219:#define __RPC__inout_ecount_full_string(size) _SAL1_2_Source_(__RPC__inout_ecount_full_string, (size), __RPC__inout_ecount_full(size) _Pre_ _Null_terminated_ _Post_ _Null_terminated_)
./shared/rpcsal.h:223:#define __RPC__inout_xcount_full_string(size) _SAL1_2_Source_(__RPC__inout_xcount_full_string, (size), __RPC__inout _Pre_ _Null_terminated_ _Post_ _Null_terminated_)
./shared/rpcsal.h:227:#define __RPC__in_opt_string _SAL1_2_Source_(__RPC__in_opt_string, (), __RPC__in_opt _Pre_ _Null_terminated_)
./shared/rpcsal.h:229:#define __RPC__in_ecount_opt_string(size) _SAL1_2_Source_(__RPC__in_ecount_opt_string, (size), __RPC__in_ecount_opt(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:231:#define __RPC__in_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__in_ecount_full_opt_string, (size), __RPC__in_ecount_full_opt(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:234:#define __RPC__in_xcount_full_opt_string(size) _SAL1_2_Source_(__RPC__in_xcount_full_opt_string, (size), __RPC__in_ecount_full_opt(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:237:#define __RPC__in_xcount_opt_string(size) _SAL1_2_Source_(__RPC__in_xcount_opt_string, (size), __RPC__in_ecount_opt(size) _Pre_ _Null_terminated_)
./shared/rpcsal.h:241:#define __RPC__inout_opt_string _SAL1_2_Source_(__RPC__inout_opt_string, (), __RPC__inout_opt _Pre_ _Null_terminated_)
./shared/rpcsal.h:245:#define __RPC__inout_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__inout_ecount_full_opt_string, (size), __RPC__inout_ecount_full_opt(size) _Pre_ _Null_terminated_ _Post_ _Null_terminated_)
./shared/rpcsal.h:249:#define __RPC__inout_xcount_full_opt_string(size) _SAL1_2_Source_(__RPC__inout_xcount_full_opt_string, (size), __RPC__inout_opt _Pre_ _Null_terminated_ _Post_ _Null_terminated_)
./shared/rpcsal.h:259:#define __RPC__deref_out_ecount_full_string(size) _SAL1_2_Source_(__RPC__deref_out_ecount_full_string, (size), __RPC__deref_out_ecount_full(size) _At_(*_Curr_, _Post_ _Null_terminated_))
./shared/rpcsal.h:263:#define __RPC__deref_out_xcount_full_string(size) _SAL1_2_Source_(__RPC__deref_out_xcount_full_string, (size), __RPC__deref_out _At_(*_Curr_, _Post_ _Null_terminated_))
./shared/rpcsal.h:267:#define __RPC__deref_inout_string _SAL1_2_Source_(__RPC__deref_inout_string, (), __RPC__deref_inout _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:269:#define __RPC__deref_inout_opt_string _SAL1_2_Source_(__RPC__deref_inout_opt_string, (), __RPC__deref_inout_opt _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:274:#define __RPC__deref_inout_ecount_full_string(size) _SAL1_2_Source_(__RPC__deref_inout_ecount_full_string, (size), __RPC__deref_inout_ecount_full(size) _At_(*_Curr_, _Post_ _Null_terminated_))
./shared/rpcsal.h:275:#define __RPC__deref_inout_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_inout_ecount_full_opt_string, (size), __RPC__deref_inout_ecount_full_opt(size) _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:280:#define __RPC__deref_inout_xcount_full_string(size) _SAL1_2_Source_(__RPC__deref_inout_xcount_full_string, (size), __RPC__deref_inout _At_(*_Curr_, _Post_ _Null_terminated_))
./shared/rpcsal.h:281:#define __RPC__deref_inout_xcount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_inout_xcount_full_opt_string, (size), __RPC__deref_inout_opt _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:289:#define __RPC__deref_opt_inout_string _SAL1_2_Source_(__RPC__deref_opt_inout_string, (), __RPC__deref_opt_inout _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:292:#define __RPC__deref_opt_inout_ecount_full_string(size) _SAL1_2_Source_(__RPC__deref_opt_inout_ecount_full_string, (size), __RPC__deref_opt_inout_ecount_full(size) _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:301:#define __RPC__deref_out_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_out_ecount_full_opt_string, (size), __RPC__deref_out_ecount_part_opt(size, size) _At_(*_Curr_, _Post_ _Null_terminated_))
./shared/rpcsal.h:305:#define __RPC__deref_out_xcount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_out_xcount_full_opt_string, (size), __RPC__deref_out_opt _At_(*_Curr_, _Pre_maybenull_ _Pre_writable_size_(_Inexpressible_(size)) _Post_ _Null_terminated_))
./shared/rpcsal.h:308:#define __RPC__deref_opt_inout_opt_string _SAL1_2_Source_(__RPC__deref_opt_inout_opt_string, (), __RPC__deref_opt_inout_opt _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:312:#define __RPC__deref_opt_inout_ecount_full_opt_string(size) _SAL1_2_Source_(__RPC__deref_opt_inout_ecount_full_opt_string, (size), __RPC__deref_opt_inout_ecount_full_opt(size) _At_(*_Curr_, _Pre_ _Null_terminated_ _Post_ _Null_terminated_))
./shared/rpcsal.h:321:#define __RPC_string _SAL1_2_Source_(__RPC_string, (), _Null_terminated_)
./shared/sal.h:613:#define _Field_z_ _SAL2_Source_(_Field_z_, (), _Null_terminated_)
./shared/sal.h:646:#define _Null_terminated_ _SAL2_Source_(_Null_terminated_, (), _Null_terminated_impl_)
./shared/sal.h:1524:#define _Null_terminated_impl_ _SA_annotes1(SAL_nullTerminated, __yes)
./shared/sal.h:2033:#define _Null_terminated_impl_ [__A_(__d_=0)]
./shared/sal.h:2161:#define _Null_terminated_impl_
./shared/sal.h:2867:#define __nullterminated _SAL1_Source_(__nullterminated, (), _Null_terminated_)
./shared/sal.h:2924:void __AnalysisAssumeNullterminated(_Post_ _Null_terminated_ void *p);
./shared/strsafe.h:158:typedef _Null_terminated_ char* STRSAFE_LPSTR;
./shared/strsafe.h:159:typedef _Null_terminated_ const char* STRSAFE_LPCSTR;
./shared/strsafe.h:160:typedef _Null_terminated_ wchar_t* STRSAFE_LPWSTR;
./shared/strsafe.h:161:typedef _Null_terminated_ const wchar_t* STRSAFE_LPCWSTR;
./shared/strsafe.h:162:typedef _Null_terminated_ const wchar_t UNALIGNED* STRSAFE_LPCUWSTR;
./shared/wtypes.h:729:typedef _Null_terminated_ OLECHAR *BSTR;
./shared/WTypes.Idl:720:cpp_quote("typedef _Null_terminated_ OLECHAR *BSTR;")
./um/celib.h:168:typedef _Null_terminated_ PCWSTR const * CSPCZPCWSTR;
./um/certbcli.idl:18:typedef _Null_terminated_ WCHAR * PWSTR;
./um/certbcli.idl:19:typedef _Null_terminated_ WCHAR const * PCWSTR;
./um/certbcli.idl:20:typedef _Null_terminated_ CHAR * PSTR;
./um/certbcli.idl:21:typedef _Null_terminated_ CHAR const * PCSTR;
./um/cfgmgr32.h:103:typedef _Null_terminated_ CHAR *DEVNODEID_A, *DEVINSTID_A; // Device ID ANSI name.
./um/cfgmgr32.h:104:typedef _Null_terminated_ WCHAR *DEVNODEID_W, *DEVINSTID_W; // Device ID Unicode name.
./um/esent.h:127:typedef _Null_terminated_ char * JET_PSTR; /* ASCII string (char *) null terminated */
./um/esent.h:128:typedef _Null_terminated_ const char * JET_PCSTR; /* const ASCII string (char *) null terminated */
./um/esent.h:129:typedef _Null_terminated_ WCHAR * JET_PWSTR; /* Unicode string (char *) null terminated */
./um/esent.h:130:typedef _Null_terminated_ const WCHAR * JET_PCWSTR; /* const Unicode string (char *) null terminated */
./um/fci.h:205:typedef _Null_terminated_ char* LPSTR;
./um/fdi.h:361:typedef _Null_terminated_ char* LPSTR;
./um/mi.h:703:typedef _Null_terminated_ MI_Char* MI_StringPtr;
./um/mi.h:704:typedef _Null_terminated_ _Const_ const MI_Char* MI_ConstStringPtr;
./um/objbase.h:169: _In_ _Null_terminated_ OLECHAR * pwszName,
./um/objbase.h:237:_Check_return_ WINOLEAPI StgCreateDocfile(_In_opt_ _Null_terminated_ const WCHAR* pwcsName,
./um/objbase.h:247:_Check_return_ WINOLEAPI StgOpenStorage(_In_opt_ _Null_terminated_ const WCHAR* pwcsName,
./um/objbase.h:260:_Check_return_ WINOLEAPI StgIsStorageFile(_In_ _Null_terminated_ const WCHAR* pwcsName);
./um/objbase.h:263:_Check_return_ WINOLEAPI StgSetTimes(_In_ _Null_terminated_ const WCHAR* lpszName,
./um/objbase.h:276:_Check_return_ WINOLEAPI StgGetIFillLockBytesOnFile(_In_ _Null_terminated_ OLECHAR const *pwcsName,
./um/objbase.h:286:_Check_return_ WINOLEAPI StgOpenLayoutDocfile(_In_ _Null_terminated_ OLECHAR const *pwcsDfName,
./um/objbase.h:317:_Check_return_ WINOLEAPI StgCreateStorageEx (_In_opt_ _Null_terminated_ const WCHAR* pwcsName,
./um/objbase.h:326:_Check_return_ WINOLEAPI StgOpenStorageEx (_In_ _Null_terminated_ const WCHAR* pwcsName,
./um/oleTx2xa.h:462: _Null_terminated_ char *pszDSN,
./um/oleTx2xa.h:464: _Null_terminated_ char *pszClientDll,
./um/oleTx2xa.h:506: _Null_terminated_ char *pszDSN,
./um/oleTx2xa.h:508: _Null_terminated_ char *pszClientDll,
./um/ShObjIdl.h:2775: _Out_writes_bytes_((uType & GCS_UNICODE) ? (cchMax * sizeof(wchar_t)) : cchMax) _When_(!(uType & (GCS_VALIDATEA | GCS_VALIDATEW)), _Null_terminated_) CHAR *pszName,
./um/ShObjIdl.h:2827: _Out_writes_bytes_((uType & GCS_UNICODE) ? (cchMax * sizeof(wchar_t)) : cchMax) _When_(!(uType & (GCS_VALIDATEA | GCS_VALIDATEW)), _Null_terminated_) CHAR *pszName,
./um/ShObjIdl.h:2955: _Out_writes_bytes_((uType & GCS_UNICODE) ? (cchMax * sizeof(wchar_t)) : cchMax) _When_(!(uType & (GCS_VALIDATEA | GCS_VALIDATEW)), _Null_terminated_) CHAR *pszName,
./um/ShObjIdl.h:3098: _Out_writes_bytes_((uType & GCS_UNICODE) ? (cchMax * sizeof(wchar_t)) : cchMax) _When_(!(uType & (GCS_VALIDATEA | GCS_VALIDATEW)), _Null_terminated_) CHAR *pszName,
./um/ShObjIdl.idl:304: [out, annotation("_Out_writes_bytes_((uType & GCS_UNICODE) ? (cchMax * sizeof(wchar_t)) : cchMax) _When_(!(uType & (GCS_VALIDATEA | GCS_VALIDATEW)), _Null_terminated_)")] CHAR* pszName,
./um/TxDtc.h:1124: _Null_terminated_ char *pszOpenString,
./um/TxDtc.h:1126: _Null_terminated_ char *pszCloseString,
./um/TxDtc.h:1159: _Null_terminated_ char *pszOpenString,
./um/TxDtc.h:1161: _Null_terminated_ char *pszCloseString,
./um/WinBase.h:6333: _In_ _Null_terminated_ PWCHAR ConditionStr,
./um/winnt.h:403:typedef _Null_terminated_ WCHAR *NWPSTR, *LPWSTR, *PWSTR;
./um/winnt.h:404:typedef _Null_terminated_ PWSTR *PZPWSTR;
./um/winnt.h:405:typedef _Null_terminated_ CONST PWSTR *PCZPWSTR;
./um/winnt.h:406:typedef _Null_terminated_ WCHAR UNALIGNED *LPUWSTR, *PUWSTR;
./um/winnt.h:407:typedef _Null_terminated_ CONST WCHAR *LPCWSTR, *PCWSTR;
./um/winnt.h:408:typedef _Null_terminated_ PCWSTR *PZPCWSTR;
./um/winnt.h:409:typedef _Null_terminated_ CONST PCWSTR *PCZPCWSTR;
./um/winnt.h:410:typedef _Null_terminated_ CONST WCHAR UNALIGNED *LPCUWSTR, *PCUWSTR;
./um/winnt.h:472:typedef _Null_terminated_ CHAR *NPSTR, *LPSTR, *PSTR;
./um/winnt.h:473:typedef _Null_terminated_ PSTR *PZPSTR;
./um/winnt.h:474:typedef _Null_terminated_ CONST PSTR *PCZPSTR;
./um/winnt.h:475:typedef _Null_terminated_ CONST CHAR *LPCSTR, *PCSTR;
./um/winnt.h:476:typedef _Null_terminated_ PCSTR *PZPCSTR;
./um/winnt.h:477:typedef _Null_terminated_ CONST PCSTR *PCZPCSTR;
./wdf/umdf/1.11/wudfddi_basictypes.h:19:typedef _Null_terminated_ WCHAR *PWSTR;
./wdf/umdf/1.11/wudfddi_basictypes.h:20:typedef _Null_terminated_ const WCHAR *PCWSTR;
./wdf/umdf/1.9/wudfddi_types.h:18:typedef _Null_terminated_ WCHAR *PWSTR;
./wdf/umdf/1.9/wudfddi_types.h:19:typedef _Null_terminated_ const WCHAR *PCWSTR;
./wdf/umdf/2.0/wudfwdm.h:147:typedef _Null_terminated_ CHAR *PSZ;
./wdf/umdf/2.0/wudfwdm.h:148:typedef _Null_terminated_ CONST char *PCSZ;
./winrt/activationregistration.h:417:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IActivatableClassRegistration[] = L"Windows.Foundation.IActivatableClassRegistration";
./winrt/activationregistration.h:718:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IDllServerActivatableClassRegistration[] = L"Windows.Foundation.IDllServerActivatableClassRegistration";
./winrt/activationregistration.h:863:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IExeServerActivatableClassRegistration[] = L"Windows.Foundation.IExeServerActivatableClassRegistration";
./winrt/activationregistration.h:998:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IExeServerRegistration[] = L"Windows.Foundation.IExeServerRegistration";
./winrt/activationregistration.h:1214:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_DllServerActivatableClassRegistration[] = L"Windows.Foundation.DllServerActivatableClassRegistration";
./winrt/activationregistration.h:1227:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_ExeServerActivatableClassRegistration[] = L"Windows.Foundation.ExeServerActivatableClassRegistration";
./winrt/activationregistration.h:1240:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_ExeServerRegistration[] = L"Windows.Foundation.ExeServerRegistration";
./winrt/ivectorchangedeventargs.h:99:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Collections_IVectorChangedEventArgs[] = L"Windows.Foundation.Collections.IVectorChangedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2017:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ISplashScreen[] = L"Windows.ApplicationModel.Activation.ISplashScreen";
./winrt/Windows.Applicationmodel.Activation.h:2235:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2392:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IApplicationViewActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IApplicationViewActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2529:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IPrelaunchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IPrelaunchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2666:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ILaunchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ILaunchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2813:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ISearchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ISearchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:2960:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ISearchActivatedEventArgsWithLinguisticDetails[] = L"Windows.ApplicationModel.Activation.ISearchActivatedEventArgsWithLinguisticDetails";
./winrt/Windows.Applicationmodel.Activation.h:3097:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IShareTargetActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IShareTargetActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:3234:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IFileActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IFileActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:3381:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IFileActivatedEventArgsWithNeighboringFiles[] = L"Windows.ApplicationModel.Activation.IFileActivatedEventArgsWithNeighboringFiles";
./winrt/Windows.Applicationmodel.Activation.h:3518:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IProtocolActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IProtocolActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:3655:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IFileOpenPickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IFileOpenPickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:3792:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IFileSavePickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IFileSavePickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:3929:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ICachedFileUpdaterActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ICachedFileUpdaterActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4066:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactPickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactPickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4203:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IDeviceActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IDeviceActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4350:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IPrintTaskSettingsActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IPrintTaskSettingsActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4487:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ICameraSettingsActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ICameraSettingsActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4634:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IAppointmentsProviderActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4771:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IAppointmentsProviderAddAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IAppointmentsProviderAddAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:4908:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IAppointmentsProviderReplaceAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IAppointmentsProviderReplaceAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5045:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IAppointmentsProviderRemoveAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IAppointmentsProviderRemoveAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5182:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IAppointmentsProviderShowTimeFrameActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IAppointmentsProviderShowTimeFrameActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5329:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5466:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactCallActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5623:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactMessageActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactMessageActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5780:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactMapActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactMapActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:5927:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactPostActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactPostActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6084:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactVideoCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactVideoCallActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6241:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IContactsProviderActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IContactsProviderActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6378:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_IRestrictedLaunchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.IRestrictedLaunchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6515:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Activation_ILockScreenCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ILockScreenCallActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6653:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_SplashScreen[] = L"Windows.ApplicationModel.Activation.SplashScreen";
./winrt/Windows.Applicationmodel.Activation.h:6657:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_LaunchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.LaunchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6661:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_SearchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.SearchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6665:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ShareTargetActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ShareTargetActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6669:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_FileActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.FileActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6673:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ProtocolActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ProtocolActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6677:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_FileOpenPickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.FileOpenPickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6681:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_FileSavePickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.FileSavePickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6685:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_CachedFileUpdaterActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.CachedFileUpdaterActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6689:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactPickerActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactPickerActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6693:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_DeviceActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.DeviceActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6697:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_PrintTaskSettingsActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.PrintTaskSettingsActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6701:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_CameraSettingsActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.CameraSettingsActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6705:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_AppointmentsProviderAddAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.AppointmentsProviderAddAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6709:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_AppointmentsProviderReplaceAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.AppointmentsProviderReplaceAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6713:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_AppointmentsProviderRemoveAppointmentActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.AppointmentsProviderRemoveAppointmentActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6717:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_AppointmentsProviderShowTimeFrameActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.AppointmentsProviderShowTimeFrameActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6721:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactCallActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6725:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactMessageActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactMessageActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6729:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactMapActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactMapActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6733:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactPostActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactPostActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6737:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_ContactVideoCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.ContactVideoCallActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6741:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_RestrictedLaunchActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.RestrictedLaunchActivatedEventArgs";
./winrt/Windows.Applicationmodel.Activation.h:6745:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Activation_LockScreenCallActivatedEventArgs[] = L"Windows.ApplicationModel.Activation.LockScreenCallActivatedEventArgs";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:279:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_AppointmentsProvider_IAppointmentsProviderLaunchActionVerbsStatics[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.IAppointmentsProviderLaunchActionVerbsStatics";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:470:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_AppointmentsProvider_IAddAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.IAddAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:655:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_AppointmentsProvider_IReplaceAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.IReplaceAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:860:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_AppointmentsProvider_IRemoveAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.IRemoveAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:1054:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentsProvider_AppointmentsProviderLaunchActionVerbs[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.AppointmentsProviderLaunchActionVerbs";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:1058:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentsProvider_AddAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.AddAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:1062:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentsProvider_ReplaceAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.ReplaceAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.appointmentsprovider.h:1066:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentsProvider_RemoveAppointmentOperation[] = L"Windows.ApplicationModel.Appointments.AppointmentsProvider.RemoveAppointmentOperation";
./winrt/Windows.ApplicationModel.appointments.h:2017:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_IAppointmentManagerStatics[] = L"Windows.ApplicationModel.Appointments.IAppointmentManagerStatics";
./winrt/Windows.ApplicationModel.appointments.h:2457:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_IAppointmentParticipant[] = L"Windows.ApplicationModel.Appointments.IAppointmentParticipant";
./winrt/Windows.ApplicationModel.appointments.h:2624:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_IAppointmentInvitee[] = L"Windows.ApplicationModel.Appointments.IAppointmentInvitee";
./winrt/Windows.ApplicationModel.appointments.h:2791:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_IAppointmentRecurrence[] = L"Windows.ApplicationModel.Appointments.IAppointmentRecurrence";
./winrt/Windows.ApplicationModel.appointments.h:3078:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Appointments_IAppointment[] = L"Windows.ApplicationModel.Appointments.IAppointment";
./winrt/Windows.ApplicationModel.appointments.h:3456:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_Appointment[] = L"Windows.ApplicationModel.Appointments.Appointment";
./winrt/Windows.ApplicationModel.appointments.h:3460:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentOrganizer[] = L"Windows.ApplicationModel.Appointments.AppointmentOrganizer";
./winrt/Windows.ApplicationModel.appointments.h:3464:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentInvitee[] = L"Windows.ApplicationModel.Appointments.AppointmentInvitee";
./winrt/Windows.ApplicationModel.appointments.h:3468:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentRecurrence[] = L"Windows.ApplicationModel.Appointments.AppointmentRecurrence";
./winrt/Windows.ApplicationModel.appointments.h:3472:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Appointments_AppointmentManager[] = L"Windows.ApplicationModel.Appointments.AppointmentManager";
./winrt/Windows.ApplicationModel.background.h:4116:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IAlarmApplicationManagerStatics[] = L"Windows.ApplicationModel.Background.IAlarmApplicationManagerStatics";
./winrt/Windows.ApplicationModel.background.h:4263:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundExecutionManagerStatics[] = L"Windows.ApplicationModel.Background.IBackgroundExecutionManagerStatics";
./winrt/Windows.ApplicationModel.background.h:4452:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskInstance[] = L"Windows.ApplicationModel.Background.IBackgroundTaskInstance";
./winrt/Windows.ApplicationModel.background.h:4671:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundWorkCostStatics[] = L"Windows.ApplicationModel.Background.IBackgroundWorkCostStatics";
./winrt/Windows.ApplicationModel.background.h:4808:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskDeferral[] = L"Windows.ApplicationModel.Background.IBackgroundTaskDeferral";
./winrt/Windows.ApplicationModel.background.h:4943:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskInstance2[] = L"Windows.ApplicationModel.Background.IBackgroundTaskInstance2";
./winrt/Windows.ApplicationModel.background.h:5082:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTask[] = L"Windows.ApplicationModel.Background.IBackgroundTask";
./winrt/Windows.ApplicationModel.background.h:5219:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskRegistration[] = L"Windows.ApplicationModel.Background.IBackgroundTaskRegistration";
./winrt/Windows.ApplicationModel.background.h:5420:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskRegistrationStatics[] = L"Windows.ApplicationModel.Background.IBackgroundTaskRegistrationStatics";
./winrt/Windows.ApplicationModel.background.h:5557:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskBuilder[] = L"Windows.ApplicationModel.Background.IBackgroundTaskBuilder";
./winrt/Windows.ApplicationModel.background.h:5754:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTrigger[] = L"Windows.ApplicationModel.Background.IBackgroundTrigger";
./winrt/Windows.ApplicationModel.background.h:5881:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundCondition[] = L"Windows.ApplicationModel.Background.IBackgroundCondition";
./winrt/Windows.ApplicationModel.background.h:6008:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskBuilder2[] = L"Windows.ApplicationModel.Background.IBackgroundTaskBuilder2";
./winrt/Windows.ApplicationModel.background.h:6155:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskCompletedEventArgs[] = L"Windows.ApplicationModel.Background.IBackgroundTaskCompletedEventArgs";
./winrt/Windows.ApplicationModel.background.h:6300:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IBackgroundTaskProgressEventArgs[] = L"Windows.ApplicationModel.Background.IBackgroundTaskProgressEventArgs";
./winrt/Windows.ApplicationModel.background.h:6447:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ISystemTrigger[] = L"Windows.ApplicationModel.Background.ISystemTrigger";
./winrt/Windows.ApplicationModel.background.h:6594:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ISystemTriggerFactory[] = L"Windows.ApplicationModel.Background.ISystemTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:6735:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ISystemCondition[] = L"Windows.ApplicationModel.Background.ISystemCondition";
./winrt/Windows.ApplicationModel.background.h:6872:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ISystemConditionFactory[] = L"Windows.ApplicationModel.Background.ISystemConditionFactory";
./winrt/Windows.ApplicationModel.background.h:7011:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_INetworkOperatorNotificationTrigger[] = L"Windows.ApplicationModel.Background.INetworkOperatorNotificationTrigger";
./winrt/Windows.ApplicationModel.background.h:7148:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_INetworkOperatorNotificationTriggerFactory[] = L"Windows.ApplicationModel.Background.INetworkOperatorNotificationTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:7287:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ITimeTrigger[] = L"Windows.ApplicationModel.Background.ITimeTrigger";
./winrt/Windows.ApplicationModel.background.h:7434:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ITimeTriggerFactory[] = L"Windows.ApplicationModel.Background.ITimeTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:7575:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IMaintenanceTrigger[] = L"Windows.ApplicationModel.Background.IMaintenanceTrigger";
./winrt/Windows.ApplicationModel.background.h:7722:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IMaintenanceTriggerFactory[] = L"Windows.ApplicationModel.Background.IMaintenanceTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:7863:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IDeviceUseTrigger[] = L"Windows.ApplicationModel.Background.IDeviceUseTrigger";
./winrt/Windows.ApplicationModel.background.h:8016:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IDeviceServicingTrigger[] = L"Windows.ApplicationModel.Background.IDeviceServicingTrigger";
./winrt/Windows.ApplicationModel.background.h:8173:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ILocationTrigger[] = L"Windows.ApplicationModel.Background.ILocationTrigger";
./winrt/Windows.ApplicationModel.background.h:8310:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_ILocationTriggerFactory[] = L"Windows.ApplicationModel.Background.ILocationTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:8449:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_INetworkOperatorHotspotAuthenticationTrigger[] = L"Windows.ApplicationModel.Background.INetworkOperatorHotspotAuthenticationTrigger";
./winrt/Windows.ApplicationModel.background.h:8576:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Background_IPushNotificationTriggerFactory[] = L"Windows.ApplicationModel.Background.IPushNotificationTriggerFactory";
./winrt/Windows.ApplicationModel.background.h:8716:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_AlarmApplicationManager[] = L"Windows.ApplicationModel.Background.AlarmApplicationManager";
./winrt/Windows.ApplicationModel.background.h:8720:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundExecutionManager[] = L"Windows.ApplicationModel.Background.BackgroundExecutionManager";
./winrt/Windows.ApplicationModel.background.h:8724:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundTaskRegistration[] = L"Windows.ApplicationModel.Background.BackgroundTaskRegistration";
./winrt/Windows.ApplicationModel.background.h:8728:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundTaskDeferral[] = L"Windows.ApplicationModel.Background.BackgroundTaskDeferral";
./winrt/Windows.ApplicationModel.background.h:8732:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundTaskProgressEventArgs[] = L"Windows.ApplicationModel.Background.BackgroundTaskProgressEventArgs";
./winrt/Windows.ApplicationModel.background.h:8736:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundTaskCompletedEventArgs[] = L"Windows.ApplicationModel.Background.BackgroundTaskCompletedEventArgs";
./winrt/Windows.ApplicationModel.background.h:8740:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundTaskBuilder[] = L"Windows.ApplicationModel.Background.BackgroundTaskBuilder";
./winrt/Windows.ApplicationModel.background.h:8744:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_BackgroundWorkCost[] = L"Windows.ApplicationModel.Background.BackgroundWorkCost";
./winrt/Windows.ApplicationModel.background.h:8748:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_SystemTrigger[] = L"Windows.ApplicationModel.Background.SystemTrigger";
./winrt/Windows.ApplicationModel.background.h:8752:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_SystemCondition[] = L"Windows.ApplicationModel.Background.SystemCondition";
./winrt/Windows.ApplicationModel.background.h:8756:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_NetworkOperatorNotificationTrigger[] = L"Windows.ApplicationModel.Background.NetworkOperatorNotificationTrigger";
./winrt/Windows.ApplicationModel.background.h:8760:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_TimeTrigger[] = L"Windows.ApplicationModel.Background.TimeTrigger";
./winrt/Windows.ApplicationModel.background.h:8764:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_MaintenanceTrigger[] = L"Windows.ApplicationModel.Background.MaintenanceTrigger";
./winrt/Windows.ApplicationModel.background.h:8768:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_DeviceUseTrigger[] = L"Windows.ApplicationModel.Background.DeviceUseTrigger";
./winrt/Windows.ApplicationModel.background.h:8772:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_DeviceServicingTrigger[] = L"Windows.ApplicationModel.Background.DeviceServicingTrigger";
./winrt/Windows.ApplicationModel.background.h:8776:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_LocationTrigger[] = L"Windows.ApplicationModel.Background.LocationTrigger";
./winrt/Windows.ApplicationModel.background.h:8780:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_NetworkOperatorHotspotAuthenticationTrigger[] = L"Windows.ApplicationModel.Background.NetworkOperatorHotspotAuthenticationTrigger";
./winrt/Windows.ApplicationModel.background.h:8784:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Background_PushNotificationTrigger[] = L"Windows.ApplicationModel.Background.PushNotificationTrigger";
./winrt/Windows.Applicationmodel.Calls.h:584:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Calls_ILockScreenCallEndCallDeferral[] = L"Windows.ApplicationModel.Calls.ILockScreenCallEndCallDeferral";
./winrt/Windows.Applicationmodel.Calls.h:719:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Calls_ILockScreenCallEndRequestedEventArgs[] = L"Windows.ApplicationModel.Calls.ILockScreenCallEndRequestedEventArgs";
./winrt/Windows.Applicationmodel.Calls.h:866:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Calls_ILockScreenCallUI[] = L"Windows.ApplicationModel.Calls.ILockScreenCallUI";
./winrt/Windows.Applicationmodel.Calls.h:1066:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Calls_LockScreenCallEndCallDeferral[] = L"Windows.ApplicationModel.Calls.LockScreenCallEndCallDeferral";
./winrt/Windows.Applicationmodel.Calls.h:1070:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Calls_LockScreenCallUI[] = L"Windows.ApplicationModel.Calls.LockScreenCallUI";
./winrt/Windows.Applicationmodel.Calls.h:1074:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Calls_LockScreenCallEndRequestedEventArgs[] = L"Windows.ApplicationModel.Calls.LockScreenCallEndRequestedEventArgs";
./winrt/Windows.ApplicationModel.contacts.h:17312:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactManagerStatics[] = L"Windows.ApplicationModel.Contacts.IContactManagerStatics";
./winrt/Windows.ApplicationModel.contacts.h:17646:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactLaunchActionVerbsStatics[] = L"Windows.ApplicationModel.Contacts.IContactLaunchActionVerbsStatics";
./winrt/Windows.ApplicationModel.contacts.h:17823:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactField[] = L"Windows.ApplicationModel.Contacts.IContactField";
./winrt/Windows.ApplicationModel.contacts.h:17990:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactLocationField[] = L"Windows.ApplicationModel.Contacts.IContactLocationField";
./winrt/Windows.ApplicationModel.contacts.h:18177:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactInstantMessageField[] = L"Windows.ApplicationModel.Contacts.IContactInstantMessageField";
./winrt/Windows.ApplicationModel.contacts.h:18344:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IKnownContactFieldStatics[] = L"Windows.ApplicationModel.Contacts.IKnownContactFieldStatics";
./winrt/Windows.ApplicationModel.contacts.h:18535:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactInformation[] = L"Windows.ApplicationModel.Contacts.IContactInformation";
./winrt/Windows.ApplicationModel.contacts.h:18744:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactPicker[] = L"Windows.ApplicationModel.Contacts.IContactPicker";
./winrt/Windows.ApplicationModel.contacts.h:18941:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactPicker2[] = L"Windows.ApplicationModel.Contacts.IContactPicker2";
./winrt/Windows.ApplicationModel.contacts.h:19098:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactFieldFactory[] = L"Windows.ApplicationModel.Contacts.IContactFieldFactory";
./winrt/Windows.ApplicationModel.contacts.h:19273:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactLocationFieldFactory[] = L"Windows.ApplicationModel.Contacts.IContactLocationFieldFactory";
./winrt/Windows.ApplicationModel.contacts.h:19450:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactInstantMessageFieldFactory[] = L"Windows.ApplicationModel.Contacts.IContactInstantMessageFieldFactory";
./winrt/Windows.ApplicationModel.contacts.h:19623:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactSignificantOther[] = L"Windows.ApplicationModel.Contacts.IContactSignificantOther";
./winrt/Windows.ApplicationModel.contacts.h:19790:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactWebsite[] = L"Windows.ApplicationModel.Contacts.IContactWebsite";
./winrt/Windows.ApplicationModel.contacts.h:19957:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactEmail[] = L"Windows.ApplicationModel.Contacts.IContactEmail";
./winrt/Windows.ApplicationModel.contacts.h:20144:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactPhone[] = L"Windows.ApplicationModel.Contacts.IContactPhone";
./winrt/Windows.ApplicationModel.contacts.h:20331:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactAddress[] = L"Windows.ApplicationModel.Contacts.IContactAddress";
./winrt/Windows.ApplicationModel.contacts.h:20598:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactConnectedServiceAccount[] = L"Windows.ApplicationModel.Contacts.IContactConnectedServiceAccount";
./winrt/Windows.ApplicationModel.contacts.h:20765:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactDate[] = L"Windows.ApplicationModel.Contacts.IContactDate";
./winrt/Windows.ApplicationModel.contacts.h:20992:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactName[] = L"Windows.ApplicationModel.Contacts.IContactName";
./winrt/Windows.ApplicationModel.contacts.h:21279:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactJobInfo[] = L"Windows.ApplicationModel.Contacts.IContactJobInfo";
./winrt/Windows.ApplicationModel.contacts.h:21566:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContact[] = L"Windows.ApplicationModel.Contacts.IContact";
./winrt/Windows.ApplicationModel.contacts.h:21743:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContact2[] = L"Windows.ApplicationModel.Contacts.IContact2";
./winrt/Windows.ApplicationModel.contacts.h:22010:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_IContactCardDelayedDataLoader[] = L"Windows.ApplicationModel.Contacts.IContactCardDelayedDataLoader";
./winrt/Windows.ApplicationModel.contacts.h:22148:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactCardDelayedDataLoader[] = L"Windows.ApplicationModel.Contacts.ContactCardDelayedDataLoader";
./winrt/Windows.ApplicationModel.contacts.h:22152:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactManager[] = L"Windows.ApplicationModel.Contacts.ContactManager";
./winrt/Windows.ApplicationModel.contacts.h:22156:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactLaunchActionVerbs[] = L"Windows.ApplicationModel.Contacts.ContactLaunchActionVerbs";
./winrt/Windows.ApplicationModel.contacts.h:22160:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactField[] = L"Windows.ApplicationModel.Contacts.ContactField";
./winrt/Windows.ApplicationModel.contacts.h:22164:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactLocationField[] = L"Windows.ApplicationModel.Contacts.ContactLocationField";
./winrt/Windows.ApplicationModel.contacts.h:22168:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactInstantMessageField[] = L"Windows.ApplicationModel.Contacts.ContactInstantMessageField";
./winrt/Windows.ApplicationModel.contacts.h:22172:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_KnownContactField[] = L"Windows.ApplicationModel.Contacts.KnownContactField";
./winrt/Windows.ApplicationModel.contacts.h:22176:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactInformation[] = L"Windows.ApplicationModel.Contacts.ContactInformation";
./winrt/Windows.ApplicationModel.contacts.h:22180:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_Contact[] = L"Windows.ApplicationModel.Contacts.Contact";
./winrt/Windows.ApplicationModel.contacts.h:22184:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactPicker[] = L"Windows.ApplicationModel.Contacts.ContactPicker";
./winrt/Windows.ApplicationModel.contacts.h:22188:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactFieldFactory[] = L"Windows.ApplicationModel.Contacts.ContactFieldFactory";
./winrt/Windows.ApplicationModel.contacts.h:22192:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactSignificantOther[] = L"Windows.ApplicationModel.Contacts.ContactSignificantOther";
./winrt/Windows.ApplicationModel.contacts.h:22196:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactWebsite[] = L"Windows.ApplicationModel.Contacts.ContactWebsite";
./winrt/Windows.ApplicationModel.contacts.h:22200:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactEmail[] = L"Windows.ApplicationModel.Contacts.ContactEmail";
./winrt/Windows.ApplicationModel.contacts.h:22204:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactPhone[] = L"Windows.ApplicationModel.Contacts.ContactPhone";
./winrt/Windows.ApplicationModel.contacts.h:22208:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactAddress[] = L"Windows.ApplicationModel.Contacts.ContactAddress";
./winrt/Windows.ApplicationModel.contacts.h:22212:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactConnectedServiceAccount[] = L"Windows.ApplicationModel.Contacts.ContactConnectedServiceAccount";
./winrt/Windows.ApplicationModel.contacts.h:22216:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactDate[] = L"Windows.ApplicationModel.Contacts.ContactDate";
./winrt/Windows.ApplicationModel.contacts.h:22220:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_ContactJobInfo[] = L"Windows.ApplicationModel.Contacts.ContactJobInfo";
./winrt/Windows.ApplicationModel.contacts.provider.h:831:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_Provider_IContactRemovedEventArgs[] = L"Windows.ApplicationModel.Contacts.Provider.IContactRemovedEventArgs";
./winrt/Windows.ApplicationModel.contacts.provider.h:994:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_Provider_IContactPickerUI[] = L"Windows.ApplicationModel.Contacts.Provider.IContactPickerUI";
./winrt/Windows.ApplicationModel.contacts.provider.h:1201:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Contacts_Provider_IContactPickerUI2[] = L"Windows.ApplicationModel.Contacts.Provider.IContactPickerUI2";
./winrt/Windows.ApplicationModel.contacts.provider.h:1353:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_Provider_ContactRemovedEventArgs[] = L"Windows.ApplicationModel.Contacts.Provider.ContactRemovedEventArgs";
./winrt/Windows.ApplicationModel.contacts.provider.h:1357:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Contacts_Provider_ContactPickerUI[] = L"Windows.ApplicationModel.Contacts.Provider.ContactPickerUI";
./winrt/Windows.ApplicationModel.core.h:1481:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_IFrameworkView[] = L"Windows.ApplicationModel.Core.IFrameworkView";
./winrt/Windows.ApplicationModel.core.h:1654:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_IFrameworkViewSource[] = L"Windows.ApplicationModel.Core.IFrameworkViewSource";
./winrt/Windows.ApplicationModel.core.h:1791:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplication[] = L"Windows.ApplicationModel.Core.ICoreApplication";
./winrt/Windows.ApplicationModel.core.h:2012:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplicationUseCount[] = L"Windows.ApplicationModel.Core.ICoreApplicationUseCount";
./winrt/Windows.ApplicationModel.core.h:2155:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplicationExit[] = L"Windows.ApplicationModel.Core.ICoreApplicationExit";
./winrt/Windows.ApplicationModel.core.h:2312:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreImmersiveApplication[] = L"Windows.ApplicationModel.Core.ICoreImmersiveApplication";
./winrt/Windows.ApplicationModel.core.h:2473:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreImmersiveApplication2[] = L"Windows.ApplicationModel.Core.ICoreImmersiveApplication2";
./winrt/Windows.ApplicationModel.core.h:2610:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplicationUnhandledError[] = L"Windows.ApplicationModel.Core.ICoreApplicationUnhandledError";
./winrt/Windows.ApplicationModel.core.h:2759:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplicationView[] = L"Windows.ApplicationModel.Core.ICoreApplicationView";
./winrt/Windows.ApplicationModel.core.h:2938:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_ICoreApplicationView2[] = L"Windows.ApplicationModel.Core.ICoreApplicationView2";
./winrt/Windows.ApplicationModel.core.h:3075:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_IUnhandledErrorDetectedEventArgs[] = L"Windows.ApplicationModel.Core.IUnhandledErrorDetectedEventArgs";
./winrt/Windows.ApplicationModel.core.h:3212:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Core_IUnhandledError[] = L"Windows.ApplicationModel.Core.IUnhandledError";
./winrt/Windows.ApplicationModel.core.h:3358:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Core_CoreApplication[] = L"Windows.ApplicationModel.Core.CoreApplication";
./winrt/Windows.ApplicationModel.core.h:3362:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Core_CoreApplicationView[] = L"Windows.ApplicationModel.Core.CoreApplicationView";
./winrt/Windows.ApplicationModel.core.h:3366:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Core_UnhandledErrorDetectedEventArgs[] = L"Windows.ApplicationModel.Core.UnhandledErrorDetectedEventArgs";
./winrt/Windows.ApplicationModel.core.h:3370:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Core_UnhandledError[] = L"Windows.ApplicationModel.Core.UnhandledError";
./winrt/Windows.ApplicationModel.datatransfer.h:3555:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IStandardDataFormatsStatics[] = L"Windows.ApplicationModel.DataTransfer.IStandardDataFormatsStatics";
./winrt/Windows.ApplicationModel.datatransfer.h:3742:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IStandardDataFormatsStatics2[] = L"Windows.ApplicationModel.DataTransfer.IStandardDataFormatsStatics2";
./winrt/Windows.ApplicationModel.datatransfer.h:3889:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackagePropertySetView[] = L"Windows.ApplicationModel.DataTransfer.IDataPackagePropertySetView";
./winrt/Windows.ApplicationModel.datatransfer.h:4076:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackagePropertySetView2[] = L"Windows.ApplicationModel.DataTransfer.IDataPackagePropertySetView2";
./winrt/Windows.ApplicationModel.datatransfer.h:4253:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackagePropertySet[] = L"Windows.ApplicationModel.DataTransfer.IDataPackagePropertySet";
./winrt/Windows.ApplicationModel.datatransfer.h:4490:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackagePropertySet2[] = L"Windows.ApplicationModel.DataTransfer.IDataPackagePropertySet2";
./winrt/Windows.ApplicationModel.datatransfer.h:4717:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataProviderDeferral[] = L"Windows.ApplicationModel.DataTransfer.IDataProviderDeferral";
./winrt/Windows.ApplicationModel.datatransfer.h:4852:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataProviderRequest[] = L"Windows.ApplicationModel.DataTransfer.IDataProviderRequest";
./winrt/Windows.ApplicationModel.datatransfer.h:5019:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IOperationCompletedEventArgs[] = L"Windows.ApplicationModel.DataTransfer.IOperationCompletedEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:5156:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackageView[] = L"Windows.ApplicationModel.DataTransfer.IDataPackageView";
./winrt/Windows.ApplicationModel.datatransfer.h:5429:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackageView2[] = L"Windows.ApplicationModel.DataTransfer.IDataPackageView2";
./winrt/Windows.ApplicationModel.datatransfer.h:5576:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackage[] = L"Windows.ApplicationModel.DataTransfer.IDataPackage";
./winrt/Windows.ApplicationModel.datatransfer.h:5893:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataPackage2[] = L"Windows.ApplicationModel.DataTransfer.IDataPackage2";
./winrt/Windows.ApplicationModel.datatransfer.h:6040:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IHtmlFormatHelperStatics[] = L"Windows.ApplicationModel.DataTransfer.IHtmlFormatHelperStatics";
./winrt/Windows.ApplicationModel.datatransfer.h:6191:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IClipboardStatics[] = L"Windows.ApplicationModel.DataTransfer.IClipboardStatics";
./winrt/Windows.ApplicationModel.datatransfer.h:6376:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataRequestDeferral[] = L"Windows.ApplicationModel.DataTransfer.IDataRequestDeferral";
./winrt/Windows.ApplicationModel.datatransfer.h:6511:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataRequest[] = L"Windows.ApplicationModel.DataTransfer.IDataRequest";
./winrt/Windows.ApplicationModel.datatransfer.h:6688:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataRequestedEventArgs[] = L"Windows.ApplicationModel.DataTransfer.IDataRequestedEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:6825:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_ITargetApplicationChosenEventArgs[] = L"Windows.ApplicationModel.DataTransfer.ITargetApplicationChosenEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:6962:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataTransferManager[] = L"Windows.ApplicationModel.DataTransfer.IDataTransferManager";
./winrt/Windows.ApplicationModel.datatransfer.h:7133:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_IDataTransferManagerStatics[] = L"Windows.ApplicationModel.DataTransfer.IDataTransferManagerStatics";
./winrt/Windows.ApplicationModel.datatransfer.h:7279:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_StandardDataFormats[] = L"Windows.ApplicationModel.DataTransfer.StandardDataFormats";
./winrt/Windows.ApplicationModel.datatransfer.h:7283:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataPackagePropertySetView[] = L"Windows.ApplicationModel.DataTransfer.DataPackagePropertySetView";
./winrt/Windows.ApplicationModel.datatransfer.h:7287:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataPackagePropertySet[] = L"Windows.ApplicationModel.DataTransfer.DataPackagePropertySet";
./winrt/Windows.ApplicationModel.datatransfer.h:7291:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataProviderDeferral[] = L"Windows.ApplicationModel.DataTransfer.DataProviderDeferral";
./winrt/Windows.ApplicationModel.datatransfer.h:7295:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataProviderRequest[] = L"Windows.ApplicationModel.DataTransfer.DataProviderRequest";
./winrt/Windows.ApplicationModel.datatransfer.h:7299:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_OperationCompletedEventArgs[] = L"Windows.ApplicationModel.DataTransfer.OperationCompletedEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:7303:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataPackageView[] = L"Windows.ApplicationModel.DataTransfer.DataPackageView";
./winrt/Windows.ApplicationModel.datatransfer.h:7307:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataPackage[] = L"Windows.ApplicationModel.DataTransfer.DataPackage";
./winrt/Windows.ApplicationModel.datatransfer.h:7311:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_HtmlFormatHelper[] = L"Windows.ApplicationModel.DataTransfer.HtmlFormatHelper";
./winrt/Windows.ApplicationModel.datatransfer.h:7315:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_Clipboard[] = L"Windows.ApplicationModel.DataTransfer.Clipboard";
./winrt/Windows.ApplicationModel.datatransfer.h:7319:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataRequestDeferral[] = L"Windows.ApplicationModel.DataTransfer.DataRequestDeferral";
./winrt/Windows.ApplicationModel.datatransfer.h:7323:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataRequest[] = L"Windows.ApplicationModel.DataTransfer.DataRequest";
./winrt/Windows.ApplicationModel.datatransfer.h:7327:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataRequestedEventArgs[] = L"Windows.ApplicationModel.DataTransfer.DataRequestedEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:7331:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_TargetApplicationChosenEventArgs[] = L"Windows.ApplicationModel.DataTransfer.TargetApplicationChosenEventArgs";
./winrt/Windows.ApplicationModel.datatransfer.h:7335:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_DataTransferManager[] = L"Windows.ApplicationModel.DataTransfer.DataTransferManager";
./winrt/Windows.ApplicationModel.datatransfer.sharetarget.h:381:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_ShareTarget_IQuickLink[] = L"Windows.ApplicationModel.DataTransfer.ShareTarget.IQuickLink";
./winrt/Windows.ApplicationModel.datatransfer.sharetarget.h:596:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_ShareTarget_IShareOperation[] = L"Windows.ApplicationModel.DataTransfer.ShareTarget.IShareOperation";
./winrt/Windows.ApplicationModel.datatransfer.sharetarget.h:805:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_DataTransfer_ShareTarget_IShareOperation2[] = L"Windows.ApplicationModel.DataTransfer.ShareTarget.IShareOperation2";
./winrt/Windows.ApplicationModel.datatransfer.sharetarget.h:943:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_ShareTarget_QuickLink[] = L"Windows.ApplicationModel.DataTransfer.ShareTarget.QuickLink";
./winrt/Windows.ApplicationModel.datatransfer.sharetarget.h:947:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DataTransfer_ShareTarget_ShareOperation[] = L"Windows.ApplicationModel.DataTransfer.ShareTarget.ShareOperation";
./winrt/Windows.ApplicationModel.h:1275:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_ISuspendingDeferral[] = L"Windows.ApplicationModel.ISuspendingDeferral";
./winrt/Windows.ApplicationModel.h:1428:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_ISuspendingOperation[] = L"Windows.ApplicationModel.ISuspendingOperation";
./winrt/Windows.ApplicationModel.h:1573:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_ISuspendingEventArgs[] = L"Windows.ApplicationModel.ISuspendingEventArgs";
./winrt/Windows.ApplicationModel.h:1708:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_IPackageId[] = L"Windows.ApplicationModel.IPackageId";
./winrt/Windows.ApplicationModel.h:1913:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_IPackage[] = L"Windows.ApplicationModel.IPackage";
./winrt/Windows.ApplicationModel.h:2078:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_IPackage2[] = L"Windows.ApplicationModel.IPackage2";
./winrt/Windows.ApplicationModel.h:2273:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_IPackageStatics[] = L"Windows.ApplicationModel.IPackageStatics";
./winrt/Windows.ApplicationModel.h:2408:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_IDesignModeStatics[] = L"Windows.ApplicationModel.IDesignModeStatics";
./winrt/Windows.ApplicationModel.h:2544:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_SuspendingEventArgs[] = L"Windows.ApplicationModel.SuspendingEventArgs";
./winrt/Windows.ApplicationModel.h:2548:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_SuspendingDeferral[] = L"Windows.ApplicationModel.SuspendingDeferral";
./winrt/Windows.ApplicationModel.h:2552:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_SuspendingOperation[] = L"Windows.ApplicationModel.SuspendingOperation";
./winrt/Windows.ApplicationModel.h:2556:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_PackageId[] = L"Windows.ApplicationModel.PackageId";
./winrt/Windows.ApplicationModel.h:2560:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Package[] = L"Windows.ApplicationModel.Package";
./winrt/Windows.ApplicationModel.h:2564:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_DesignMode[] = L"Windows.ApplicationModel.DesignMode";
./winrt/Windows.ApplicationModel.Infrastructure.h:85:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Infrastructure_ISetWindowWithWindowFactory[] = L"Windows.ApplicationModel.Infrastructure.ISetWindowWithWindowFactory";
./winrt/Windows.ApplicationModel.resources.core.h:4429:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceManager[] = L"Windows.ApplicationModel.Resources.Core.IResourceManager";
./winrt/Windows.ApplicationModel.resources.core.h:4608:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceManagerStatics[] = L"Windows.ApplicationModel.Resources.Core.IResourceManagerStatics";
./winrt/Windows.ApplicationModel.resources.core.h:4759:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceQualifier[] = L"Windows.ApplicationModel.Resources.Core.IResourceQualifier";
./winrt/Windows.ApplicationModel.resources.core.h:4938:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceContext[] = L"Windows.ApplicationModel.Resources.Core.IResourceContext";
./winrt/Windows.ApplicationModel.resources.core.h:5135:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceContextStatics[] = L"Windows.ApplicationModel.Resources.Core.IResourceContextStatics";
./winrt/Windows.ApplicationModel.resources.core.h:5276:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceContextStatics2[] = L"Windows.ApplicationModel.Resources.Core.IResourceContextStatics2";
./winrt/Windows.ApplicationModel.resources.core.h:5455:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceCandidate[] = L"Windows.ApplicationModel.Resources.Core.IResourceCandidate";
./winrt/Windows.ApplicationModel.resources.core.h:5656:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_INamedResource[] = L"Windows.ApplicationModel.Resources.Core.INamedResource";
./winrt/Windows.ApplicationModel.resources.core.h:5849:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Core_IResourceMap[] = L"Windows.ApplicationModel.Resources.Core.IResourceMap";
./winrt/Windows.ApplicationModel.resources.core.h:6027:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceMap[] = L"Windows.ApplicationModel.Resources.Core.ResourceMap";
./winrt/Windows.ApplicationModel.resources.core.h:6031:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceContext[] = L"Windows.ApplicationModel.Resources.Core.ResourceContext";
./winrt/Windows.ApplicationModel.resources.core.h:6035:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceManager[] = L"Windows.ApplicationModel.Resources.Core.ResourceManager";
./winrt/Windows.ApplicationModel.resources.core.h:6039:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceQualifier[] = L"Windows.ApplicationModel.Resources.Core.ResourceQualifier";
./winrt/Windows.ApplicationModel.resources.core.h:6043:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceCandidate[] = L"Windows.ApplicationModel.Resources.Core.ResourceCandidate";
./winrt/Windows.ApplicationModel.resources.core.h:6047:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_NamedResource[] = L"Windows.ApplicationModel.Resources.Core.NamedResource";
./winrt/Windows.ApplicationModel.resources.core.h:6051:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceMapIterator[] = L"Windows.ApplicationModel.Resources.Core.ResourceMapIterator";
./winrt/Windows.ApplicationModel.resources.core.h:6055:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceMapMapView[] = L"Windows.ApplicationModel.Resources.Core.ResourceMapMapView";
./winrt/Windows.ApplicationModel.resources.core.h:6059:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceMapMapViewIterator[] = L"Windows.ApplicationModel.Resources.Core.ResourceMapMapViewIterator";
./winrt/Windows.ApplicationModel.resources.core.h:6063:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceQualifierObservableMap[] = L"Windows.ApplicationModel.Resources.Core.ResourceQualifierObservableMap";
./winrt/Windows.ApplicationModel.resources.core.h:6067:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceQualifierMapView[] = L"Windows.ApplicationModel.Resources.Core.ResourceQualifierMapView";
./winrt/Windows.ApplicationModel.resources.core.h:6071:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceQualifierVectorView[] = L"Windows.ApplicationModel.Resources.Core.ResourceQualifierVectorView";
./winrt/Windows.ApplicationModel.resources.core.h:6075:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceCandidateVectorView[] = L"Windows.ApplicationModel.Resources.Core.ResourceCandidateVectorView";
./winrt/Windows.ApplicationModel.resources.core.h:6079:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Core_ResourceContextLanguagesVectorView[] = L"Windows.ApplicationModel.Resources.Core.ResourceContextLanguagesVectorView";
./winrt/Windows.ApplicationModel.resources.h:191:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_IResourceLoader[] = L"Windows.ApplicationModel.Resources.IResourceLoader";
./winrt/Windows.ApplicationModel.resources.h:336:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_IResourceLoader2[] = L"Windows.ApplicationModel.Resources.IResourceLoader2";
./winrt/Windows.ApplicationModel.resources.h:475:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_IResourceLoaderStatics[] = L"Windows.ApplicationModel.Resources.IResourceLoaderStatics";
./winrt/Windows.ApplicationModel.resources.h:614:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_IResourceLoaderStatics2[] = L"Windows.ApplicationModel.Resources.IResourceLoaderStatics2";
./winrt/Windows.ApplicationModel.resources.h:785:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_IResourceLoaderFactory[] = L"Windows.ApplicationModel.Resources.IResourceLoaderFactory";
./winrt/Windows.ApplicationModel.resources.h:925:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_ResourceLoader[] = L"Windows.ApplicationModel.Resources.ResourceLoader";
./winrt/Windows.ApplicationModel.resources.management.h:2288:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Management_IResourceIndexer[] = L"Windows.ApplicationModel.Resources.Management.IResourceIndexer";
./winrt/Windows.ApplicationModel.resources.management.h:2465:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Management_IResourceIndexerFactory[] = L"Windows.ApplicationModel.Resources.Management.IResourceIndexerFactory";
./winrt/Windows.ApplicationModel.resources.management.h:2606:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Management_IResourceIndexerFactory2[] = L"Windows.ApplicationModel.Resources.Management.IResourceIndexerFactory2";
./winrt/Windows.ApplicationModel.resources.management.h:2749:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Management_IIndexedResourceQualifier[] = L"Windows.ApplicationModel.Resources.Management.IIndexedResourceQualifier";
./winrt/Windows.ApplicationModel.resources.management.h:2898:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Resources_Management_IIndexedResourceCandidate[] = L"Windows.ApplicationModel.Resources.Management.IIndexedResourceCandidate";
./winrt/Windows.ApplicationModel.resources.management.h:3090:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Management_IndexedResourceCandidate[] = L"Windows.ApplicationModel.Resources.Management.IndexedResourceCandidate";
./winrt/Windows.ApplicationModel.resources.management.h:3094:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Management_ResourceIndexer[] = L"Windows.ApplicationModel.Resources.Management.ResourceIndexer";
./winrt/Windows.ApplicationModel.resources.management.h:3098:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Resources_Management_IndexedResourceQualifier[] = L"Windows.ApplicationModel.Resources.Management.IndexedResourceQualifier";
./winrt/Windows.ApplicationModel.search.h:2005:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneQueryLinguisticDetails[] = L"Windows.ApplicationModel.Search.ISearchPaneQueryLinguisticDetails";
./winrt/Windows.ApplicationModel.search.h:2162:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneVisibilityChangedEventArgs[] = L"Windows.ApplicationModel.Search.ISearchPaneVisibilityChangedEventArgs";
./winrt/Windows.ApplicationModel.search.h:2299:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneQueryChangedEventArgs[] = L"Windows.ApplicationModel.Search.ISearchPaneQueryChangedEventArgs";
./winrt/Windows.ApplicationModel.search.h:2456:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneQuerySubmittedEventArgs[] = L"Windows.ApplicationModel.Search.ISearchPaneQuerySubmittedEventArgs";
./winrt/Windows.ApplicationModel.search.h:2603:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails[] = L"Windows.ApplicationModel.Search.ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails";
./winrt/Windows.ApplicationModel.search.h:2740:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneResultSuggestionChosenEventArgs[] = L"Windows.ApplicationModel.Search.ISearchPaneResultSuggestionChosenEventArgs";
./winrt/Windows.ApplicationModel.search.h:2877:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchSuggestionCollection[] = L"Windows.ApplicationModel.Search.ISearchSuggestionCollection";
./winrt/Windows.ApplicationModel.search.h:3062:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneSuggestionsRequestDeferral[] = L"Windows.ApplicationModel.Search.ISearchPaneSuggestionsRequestDeferral";
./winrt/Windows.ApplicationModel.search.h:3197:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneSuggestionsRequest[] = L"Windows.ApplicationModel.Search.ISearchPaneSuggestionsRequest";
./winrt/Windows.ApplicationModel.search.h:3354:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneSuggestionsRequestedEventArgs[] = L"Windows.ApplicationModel.Search.ISearchPaneSuggestionsRequestedEventArgs";
./winrt/Windows.ApplicationModel.search.h:3491:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ILocalContentSuggestionSettings[] = L"Windows.ApplicationModel.Search.ILocalContentSuggestionSettings";
./winrt/Windows.ApplicationModel.search.h:3678:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneStatics[] = L"Windows.ApplicationModel.Search.ISearchPaneStatics";
./winrt/Windows.ApplicationModel.search.h:3815:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPaneStaticsWithHideThisApplication[] = L"Windows.ApplicationModel.Search.ISearchPaneStaticsWithHideThisApplication";
./winrt/Windows.ApplicationModel.search.h:3950:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchPane[] = L"Windows.ApplicationModel.Search.ISearchPane";
./winrt/Windows.ApplicationModel.search.h:4337:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchQueryLinguisticDetailsFactory[] = L"Windows.ApplicationModel.Search.ISearchQueryLinguisticDetailsFactory";
./winrt/Windows.ApplicationModel.search.h:4480:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchQueryLinguisticDetails[] = L"Windows.ApplicationModel.Search.ISearchQueryLinguisticDetails";
./winrt/Windows.ApplicationModel.search.h:4637:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchSuggestionsRequestDeferral[] = L"Windows.ApplicationModel.Search.ISearchSuggestionsRequestDeferral";
./winrt/Windows.ApplicationModel.search.h:4772:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Search_ISearchSuggestionsRequest[] = L"Windows.ApplicationModel.Search.ISearchSuggestionsRequest";
./winrt/Windows.ApplicationModel.search.h:4930:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneQueryLinguisticDetails[] = L"Windows.ApplicationModel.Search.SearchPaneQueryLinguisticDetails";
./winrt/Windows.ApplicationModel.search.h:4934:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneVisibilityChangedEventArgs[] = L"Windows.ApplicationModel.Search.SearchPaneVisibilityChangedEventArgs";
./winrt/Windows.ApplicationModel.search.h:4938:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneQueryChangedEventArgs[] = L"Windows.ApplicationModel.Search.SearchPaneQueryChangedEventArgs";
./winrt/Windows.ApplicationModel.search.h:4942:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneQuerySubmittedEventArgs[] = L"Windows.ApplicationModel.Search.SearchPaneQuerySubmittedEventArgs";
./winrt/Windows.ApplicationModel.search.h:4946:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneResultSuggestionChosenEventArgs[] = L"Windows.ApplicationModel.Search.SearchPaneResultSuggestionChosenEventArgs";
./winrt/Windows.ApplicationModel.search.h:4950:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchSuggestionCollection[] = L"Windows.ApplicationModel.Search.SearchSuggestionCollection";
./winrt/Windows.ApplicationModel.search.h:4954:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneSuggestionsRequestDeferral[] = L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequestDeferral";
./winrt/Windows.ApplicationModel.search.h:4958:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneSuggestionsRequest[] = L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequest";
./winrt/Windows.ApplicationModel.search.h:4962:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPaneSuggestionsRequestedEventArgs[] = L"Windows.ApplicationModel.Search.SearchPaneSuggestionsRequestedEventArgs";
./winrt/Windows.ApplicationModel.search.h:4966:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_LocalContentSuggestionSettings[] = L"Windows.ApplicationModel.Search.LocalContentSuggestionSettings";
./winrt/Windows.ApplicationModel.search.h:4970:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchPane[] = L"Windows.ApplicationModel.Search.SearchPane";
./winrt/Windows.ApplicationModel.search.h:4974:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchQueryLinguisticDetails[] = L"Windows.ApplicationModel.Search.SearchQueryLinguisticDetails";
./winrt/Windows.ApplicationModel.search.h:4978:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchSuggestionsRequestDeferral[] = L"Windows.ApplicationModel.Search.SearchSuggestionsRequestDeferral";
./winrt/Windows.ApplicationModel.search.h:4982:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Search_SearchSuggestionsRequest[] = L"Windows.ApplicationModel.Search.SearchSuggestionsRequest";
./winrt/Windows.ApplicationModel.store.h:5104:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_ICurrentApp[] = L"Windows.ApplicationModel.Store.ICurrentApp";
./winrt/Windows.ApplicationModel.store.h:5319:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_ICurrentAppWithConsumables[] = L"Windows.ApplicationModel.Store.ICurrentAppWithConsumables";
./winrt/Windows.ApplicationModel.store.h:5498:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_ICurrentAppSimulator[] = L"Windows.ApplicationModel.Store.ICurrentAppSimulator";
./winrt/Windows.ApplicationModel.store.h:5725:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_ICurrentAppSimulatorWithConsumables[] = L"Windows.ApplicationModel.Store.ICurrentAppSimulatorWithConsumables";
./winrt/Windows.ApplicationModel.store.h:5904:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IPurchaseResults[] = L"Windows.ApplicationModel.Store.IPurchaseResults";
./winrt/Windows.ApplicationModel.store.h:6071:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_ILicenseInformation[] = L"Windows.ApplicationModel.Store.ILicenseInformation";
./winrt/Windows.ApplicationModel.store.h:6260:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IProductLicense[] = L"Windows.ApplicationModel.Store.IProductLicense";
./winrt/Windows.ApplicationModel.store.h:6417:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IListingInformation[] = L"Windows.ApplicationModel.Store.IListingInformation";
./winrt/Windows.ApplicationModel.store.h:6604:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IProductListing[] = L"Windows.ApplicationModel.Store.IProductListing";
./winrt/Windows.ApplicationModel.store.h:6761:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IProductListingWithConsumables[] = L"Windows.ApplicationModel.Store.IProductListingWithConsumables";
./winrt/Windows.ApplicationModel.store.h:6898:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IUnfulfilledConsumable[] = L"Windows.ApplicationModel.Store.IUnfulfilledConsumable";
./winrt/Windows.ApplicationModel.store.h:7055:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IProductPurchaseDisplayProperties[] = L"Windows.ApplicationModel.Store.IProductPurchaseDisplayProperties";
./winrt/Windows.ApplicationModel.store.h:7242:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_ApplicationModel_Store_IProductPurchaseDisplayPropertiesFactory[] = L"Windows.ApplicationModel.Store.IProductPurchaseDisplayPropertiesFactory";
./winrt/Windows.ApplicationModel.store.h:7382:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_LicenseInformation[] = L"Windows.ApplicationModel.Store.LicenseInformation";
./winrt/Windows.ApplicationModel.store.h:7386:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_ListingInformation[] = L"Windows.ApplicationModel.Store.ListingInformation";
./winrt/Windows.ApplicationModel.store.h:7390:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_PurchaseResults[] = L"Windows.ApplicationModel.Store.PurchaseResults";
./winrt/Windows.ApplicationModel.store.h:7394:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_ProductPurchaseDisplayProperties[] = L"Windows.ApplicationModel.Store.ProductPurchaseDisplayProperties";
./winrt/Windows.ApplicationModel.store.h:7398:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_UnfulfilledConsumable[] = L"Windows.ApplicationModel.Store.UnfulfilledConsumable";
./winrt/Windows.ApplicationModel.store.h:7402:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_ProductLicense[] = L"Windows.ApplicationModel.Store.ProductLicense";
./winrt/Windows.ApplicationModel.store.h:7406:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_ProductListing[] = L"Windows.ApplicationModel.Store.ProductListing";
./winrt/Windows.ApplicationModel.store.h:7410:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_CurrentApp[] = L"Windows.ApplicationModel.Store.CurrentApp";
./winrt/Windows.ApplicationModel.store.h:7414:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_ApplicationModel_Store_CurrentAppSimulator[] = L"Windows.ApplicationModel.Store.CurrentAppSimulator";
./winrt/windows.data.html.h:86:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Html_IHtmlUtilities[] = L"Windows.Data.Html.IHtmlUtilities";
./winrt/windows.data.html.h:227:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Html_HtmlUtilities[] = L"Windows.Data.Html.HtmlUtilities";
./winrt/windows.data.json.h:2592:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonValue[] = L"Windows.Data.Json.IJsonValue";
./winrt/windows.data.json.h:2838:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonValueStatics[] = L"Windows.Data.Json.IJsonValueStatics";
./winrt/windows.data.json.h:3027:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonObject[] = L"Windows.Data.Json.IJsonObject";
./winrt/windows.data.json.h:3238:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonObjectWithDefaultValues[] = L"Windows.Data.Json.IJsonObjectWithDefaultValues";
./winrt/windows.data.json.h:3449:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonObjectStatics[] = L"Windows.Data.Json.IJsonObjectStatics";
./winrt/windows.data.json.h:3602:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonArray[] = L"Windows.Data.Json.IJsonArray";
./winrt/windows.data.json.h:3789:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonArrayStatics[] = L"Windows.Data.Json.IJsonArrayStatics";
./winrt/windows.data.json.h:3942:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonErrorStatics[] = L"Windows.Data.Json.IJsonErrorStatics";
./winrt/windows.data.json.h:4081:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Json_IJsonErrorStatics2[] = L"Windows.Data.Json.IJsonErrorStatics2";
./winrt/windows.data.json.h:4221:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Json_JsonArray[] = L"Windows.Data.Json.JsonArray";
./winrt/windows.data.json.h:4225:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Json_JsonObject[] = L"Windows.Data.Json.JsonObject";
./winrt/windows.data.json.h:4229:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Json_JsonValue[] = L"Windows.Data.Json.JsonValue";
./winrt/windows.data.json.h:4233:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Json_JsonError[] = L"Windows.Data.Json.JsonError";
./winrt/windows.data.pdf.h:769:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Pdf_IPdfPageDimensions[] = L"Windows.Data.Pdf.IPdfPageDimensions";
./winrt/windows.data.pdf.h:969:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Pdf_IPdfPageRenderOptions[] = L"Windows.Data.Pdf.IPdfPageRenderOptions";
./winrt/windows.data.pdf.h:1216:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Pdf_IPdfPage[] = L"Windows.Data.Pdf.IPdfPage";
./winrt/windows.data.pdf.h:1429:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Pdf_IPdfDocument[] = L"Windows.Data.Pdf.IPdfDocument";
./winrt/windows.data.pdf.h:1588:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Pdf_IPdfDocumentStatics[] = L"Windows.Data.Pdf.IPdfDocumentStatics";
./winrt/windows.data.pdf.h:1768:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Pdf_PdfPageRenderOptions[] = L"Windows.Data.Pdf.PdfPageRenderOptions";
./winrt/windows.data.pdf.h:1772:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Pdf_PdfPageDimensions[] = L"Windows.Data.Pdf.PdfPageDimensions";
./winrt/windows.data.pdf.h:1776:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Pdf_PdfPage[] = L"Windows.Data.Pdf.PdfPage";
./winrt/windows.data.pdf.h:1780:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Pdf_PdfDocument[] = L"Windows.Data.Pdf.PdfDocument";
./winrt/windows.data.text.h:4894:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_ISemanticTextQueryFactory[] = L"Windows.Data.Text.ISemanticTextQueryFactory";
./winrt/windows.data.text.h:5047:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_ISemanticTextQuery[] = L"Windows.Data.Text.ISemanticTextQuery";
./winrt/windows.data.text.h:5200:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_IUnicodeCharactersStatics[] = L"Windows.Data.Text.IUnicodeCharactersStatics";
./winrt/windows.data.text.h:5535:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_IAlternateWordForm[] = L"Windows.Data.Text.IAlternateWordForm";
./winrt/windows.data.text.h:5692:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_ISelectableWordSegment[] = L"Windows.Data.Text.ISelectableWordSegment";
./winrt/windows.data.text.h:5839:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_IWordSegment[] = L"Windows.Data.Text.IWordSegment";
./winrt/windows.data.text.h:5996:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_IWordsSegmenter[] = L"Windows.Data.Text.IWordsSegmenter";
./winrt/windows.data.text.h:6173:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_IWordsSegmenterFactory[] = L"Windows.Data.Text.IWordsSegmenterFactory";
./winrt/windows.data.text.h:6312:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_ISelectableWordsSegmenter[] = L"Windows.Data.Text.ISelectableWordsSegmenter";
./winrt/windows.data.text.h:6489:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Text_ISelectableWordsSegmenterFactory[] = L"Windows.Data.Text.ISelectableWordsSegmenterFactory";
./winrt/windows.data.text.h:6629:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_SemanticTextQuery[] = L"Windows.Data.Text.SemanticTextQuery";
./winrt/windows.data.text.h:6633:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_UnicodeCharacters[] = L"Windows.Data.Text.UnicodeCharacters";
./winrt/windows.data.text.h:6637:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_AlternateWordForm[] = L"Windows.Data.Text.AlternateWordForm";
./winrt/windows.data.text.h:6641:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_WordSegment[] = L"Windows.Data.Text.WordSegment";
./winrt/windows.data.text.h:6645:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_WordsSegmenter[] = L"Windows.Data.Text.WordsSegmenter";
./winrt/windows.data.text.h:6649:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_SelectableWordSegment[] = L"Windows.Data.Text.SelectableWordSegment";
./winrt/windows.data.text.h:6653:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Text_SelectableWordsSegmenter[] = L"Windows.Data.Text.SelectableWordsSegmenter";
./winrt/windows.data.xml.dom.h:2008:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlNodeSelector[] = L"Windows.Data.Xml.Dom.IXmlNodeSelector";
./winrt/windows.data.xml.dom.h:2223:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlNodeSerializer[] = L"Windows.Data.Xml.Dom.IXmlNodeSerializer";
./winrt/windows.data.xml.dom.h:2382:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlNode[] = L"Windows.Data.Xml.Dom.IXmlNode";
./winrt/windows.data.xml.dom.h:2753:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDomImplementation[] = L"Windows.Data.Xml.Dom.IXmlDomImplementation";
./winrt/windows.data.xml.dom.h:2896:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDocumentType[] = L"Windows.Data.Xml.Dom.IXmlDocumentType";
./winrt/windows.data.xml.dom.h:3055:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlAttribute[] = L"Windows.Data.Xml.Dom.IXmlAttribute";
./winrt/windows.data.xml.dom.h:3224:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDocumentFragment[] = L"Windows.Data.Xml.Dom.IXmlDocumentFragment";
./winrt/windows.data.xml.dom.h:3353:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlElement[] = L"Windows.Data.Xml.Dom.IXmlElement";
./winrt/windows.data.xml.dom.h:3640:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IDtdNotation[] = L"Windows.Data.Xml.Dom.IDtdNotation";
./winrt/windows.data.xml.dom.h:3789:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IDtdEntity[] = L"Windows.Data.Xml.Dom.IDtdEntity";
./winrt/windows.data.xml.dom.h:3948:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlEntityReference[] = L"Windows.Data.Xml.Dom.IXmlEntityReference";
./winrt/windows.data.xml.dom.h:4077:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlProcessingInstruction[] = L"Windows.Data.Xml.Dom.IXmlProcessingInstruction";
./winrt/windows.data.xml.dom.h:4236:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlCharacterData[] = L"Windows.Data.Xml.Dom.IXmlCharacterData";
./winrt/windows.data.xml.dom.h:4457:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlComment[] = L"Windows.Data.Xml.Dom.IXmlComment";
./winrt/windows.data.xml.dom.h:4586:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlText[] = L"Windows.Data.Xml.Dom.IXmlText";
./winrt/windows.data.xml.dom.h:4727:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlCDataSection[] = L"Windows.Data.Xml.Dom.IXmlCDataSection";
./winrt/windows.data.xml.dom.h:4856:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDocument[] = L"Windows.Data.Xml.Dom.IXmlDocument";
./winrt/windows.data.xml.dom.h:5187:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlNamedNodeMap[] = L"Windows.Data.Xml.Dom.IXmlNamedNodeMap";
./winrt/windows.data.xml.dom.h:5414:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlNodeList[] = L"Windows.Data.Xml.Dom.IXmlNodeList";
./winrt/windows.data.xml.dom.h:5565:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlLoadSettings[] = L"Windows.Data.Xml.Dom.IXmlLoadSettings";
./winrt/windows.data.xml.dom.h:5794:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDocumentIO[] = L"Windows.Data.Xml.Dom.IXmlDocumentIO";
./winrt/windows.data.xml.dom.h:5957:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Dom_IXmlDocumentStatics[] = L"Windows.Data.Xml.Dom.IXmlDocumentStatics";
./winrt/windows.data.xml.dom.h:6139:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlNodeList[] = L"Windows.Data.Xml.Dom.XmlNodeList";
./winrt/windows.data.xml.dom.h:6143:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlNamedNodeMap[] = L"Windows.Data.Xml.Dom.XmlNamedNodeMap";
./winrt/windows.data.xml.dom.h:6147:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlDocument[] = L"Windows.Data.Xml.Dom.XmlDocument";
./winrt/windows.data.xml.dom.h:6151:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlAttribute[] = L"Windows.Data.Xml.Dom.XmlAttribute";
./winrt/windows.data.xml.dom.h:6155:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlDocumentType[] = L"Windows.Data.Xml.Dom.XmlDocumentType";
./winrt/windows.data.xml.dom.h:6159:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlDomImplementation[] = L"Windows.Data.Xml.Dom.XmlDomImplementation";
./winrt/windows.data.xml.dom.h:6163:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlElement[] = L"Windows.Data.Xml.Dom.XmlElement";
./winrt/windows.data.xml.dom.h:6167:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlDocumentFragment[] = L"Windows.Data.Xml.Dom.XmlDocumentFragment";
./winrt/windows.data.xml.dom.h:6171:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlText[] = L"Windows.Data.Xml.Dom.XmlText";
./winrt/windows.data.xml.dom.h:6175:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlComment[] = L"Windows.Data.Xml.Dom.XmlComment";
./winrt/windows.data.xml.dom.h:6179:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlProcessingInstruction[] = L"Windows.Data.Xml.Dom.XmlProcessingInstruction";
./winrt/windows.data.xml.dom.h:6183:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlEntityReference[] = L"Windows.Data.Xml.Dom.XmlEntityReference";
./winrt/windows.data.xml.dom.h:6187:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlCDataSection[] = L"Windows.Data.Xml.Dom.XmlCDataSection";
./winrt/windows.data.xml.dom.h:6191:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_XmlLoadSettings[] = L"Windows.Data.Xml.Dom.XmlLoadSettings";
./winrt/windows.data.xml.dom.h:6195:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_DtdNotation[] = L"Windows.Data.Xml.Dom.DtdNotation";
./winrt/windows.data.xml.dom.h:6199:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Dom_DtdEntity[] = L"Windows.Data.Xml.Dom.DtdEntity";
./winrt/windows.data.xml.xsl.h:143:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Xsl_IXsltProcessor[] = L"Windows.Data.Xml.Xsl.IXsltProcessor";
./winrt/windows.data.xml.xsl.h:288:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Data_Xml_Xsl_IXsltProcessorFactory[] = L"Windows.Data.Xml.Xsl.IXsltProcessorFactory";
./winrt/windows.data.xml.xsl.h:430:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Data_Xml_Xsl_XsltProcessor[] = L"Windows.Data.Xml.Xsl.XsltProcessor";
./winrt/windows.devices.background.h:133:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Background_IDeviceUseDetails[] = L"Windows.Devices.Background.IDeviceUseDetails";
./winrt/windows.devices.background.h:298:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Background_IDeviceServicingDetails[] = L"Windows.Devices.Background.IDeviceServicingDetails";
./winrt/windows.devices.background.h:456:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Background_DeviceUseDetails[] = L"Windows.Devices.Background.DeviceUseDetails";
./winrt/windows.devices.background.h:460:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Background_DeviceServicingDetails[] = L"Windows.Devices.Background.DeviceServicingDetails";
./winrt/windows.devices.custom.h:985:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Custom_IKnownDeviceTypesStatics[] = L"Windows.Devices.Custom.IKnownDeviceTypesStatics";
./winrt/windows.devices.custom.h:1211:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Custom_IIOControlCode[] = L"Windows.Devices.Custom.IIOControlCode";
./winrt/windows.devices.custom.h:1388:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Custom_IIOControlCodeFactory[] = L"Windows.Devices.Custom.IIOControlCodeFactory";
./winrt/windows.devices.custom.h:1533:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Custom_ICustomDeviceStatics[] = L"Windows.Devices.Custom.ICustomDeviceStatics";
./winrt/windows.devices.custom.h:1688:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Custom_ICustomDevice[] = L"Windows.Devices.Custom.ICustomDevice";
./winrt/windows.devices.custom.h:1868:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Custom_KnownDeviceTypes[] = L"Windows.Devices.Custom.KnownDeviceTypes";
./winrt/windows.devices.custom.h:1872:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Custom_IOControlCode[] = L"Windows.Devices.Custom.IOControlCode";
./winrt/windows.devices.custom.h:1876:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Custom_CustomDevice[] = L"Windows.Devices.Custom.CustomDevice";
./winrt/windows.devices.enumeration.h:3533:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IEnclosureLocation[] = L"Windows.Devices.Enumeration.IEnclosureLocation";
./winrt/windows.devices.enumeration.h:3790:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceInformationUpdate[] = L"Windows.Devices.Enumeration.IDeviceInformationUpdate";
./winrt/windows.devices.enumeration.h:3937:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceWatcher[] = L"Windows.Devices.Enumeration.IDeviceWatcher";
./winrt/windows.devices.enumeration.h:4200:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceInformationStatics[] = L"Windows.Devices.Enumeration.IDeviceInformationStatics";
./winrt/windows.devices.enumeration.h:4449:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceInformation[] = L"Windows.Devices.Enumeration.IDeviceInformation";
./winrt/windows.devices.enumeration.h:4666:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceAccessChangedEventArgs[] = L"Windows.Devices.Enumeration.IDeviceAccessChangedEventArgs";
./winrt/windows.devices.enumeration.h:4803:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceAccessInformation[] = L"Windows.Devices.Enumeration.IDeviceAccessInformation";
./winrt/windows.devices.enumeration.h:4962:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_IDeviceAccessInformationStatics[] = L"Windows.Devices.Enumeration.IDeviceAccessInformationStatics";
./winrt/windows.devices.enumeration.h:5126:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceThumbnail[] = L"Windows.Devices.Enumeration.DeviceThumbnail";
./winrt/windows.devices.enumeration.h:5130:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_EnclosureLocation[] = L"Windows.Devices.Enumeration.EnclosureLocation";
./winrt/windows.devices.enumeration.h:5134:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceInformationUpdate[] = L"Windows.Devices.Enumeration.DeviceInformationUpdate";
./winrt/windows.devices.enumeration.h:5138:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceInformationCollection[] = L"Windows.Devices.Enumeration.DeviceInformationCollection";
./winrt/windows.devices.enumeration.h:5142:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceWatcher[] = L"Windows.Devices.Enumeration.DeviceWatcher";
./winrt/windows.devices.enumeration.h:5146:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceInformation[] = L"Windows.Devices.Enumeration.DeviceInformation";
./winrt/windows.devices.enumeration.h:5150:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceAccessChangedEventArgs[] = L"Windows.Devices.Enumeration.DeviceAccessChangedEventArgs";
./winrt/windows.devices.enumeration.h:5154:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_DeviceAccessInformation[] = L"Windows.Devices.Enumeration.DeviceAccessInformation";
./winrt/windows.devices.enumeration.pnp.h:2680:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_Pnp_IPnpObjectUpdate[] = L"Windows.Devices.Enumeration.Pnp.IPnpObjectUpdate";
./winrt/windows.devices.enumeration.pnp.h:2865:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_Pnp_IPnpObjectWatcher[] = L"Windows.Devices.Enumeration.Pnp.IPnpObjectWatcher";
./winrt/windows.devices.enumeration.pnp.h:3130:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_Pnp_IPnpObjectStatics[] = L"Windows.Devices.Enumeration.Pnp.IPnpObjectStatics";
./winrt/windows.devices.enumeration.pnp.h:3335:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Enumeration_Pnp_IPnpObject[] = L"Windows.Devices.Enumeration.Pnp.IPnpObject";
./winrt/windows.devices.enumeration.pnp.h:3505:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_Pnp_PnpObjectUpdate[] = L"Windows.Devices.Enumeration.Pnp.PnpObjectUpdate";
./winrt/windows.devices.enumeration.pnp.h:3509:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_Pnp_PnpObjectCollection[] = L"Windows.Devices.Enumeration.Pnp.PnpObjectCollection";
./winrt/windows.devices.enumeration.pnp.h:3513:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_Pnp_PnpObjectWatcher[] = L"Windows.Devices.Enumeration.Pnp.PnpObjectWatcher";
./winrt/windows.devices.enumeration.pnp.h:3517:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Enumeration_Pnp_PnpObject[] = L"Windows.Devices.Enumeration.Pnp.PnpObject";
./winrt/windows.devices.geolocation.geofencing.h:2429:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_Geofencing_IGeofenceFactory[] = L"Windows.Devices.Geolocation.Geofencing.IGeofenceFactory";
./winrt/windows.devices.geolocation.geofencing.h:2734:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_Geofencing_IGeofence[] = L"Windows.Devices.Geolocation.Geofencing.IGeofence";
./winrt/windows.devices.geolocation.geofencing.h:2933:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_Geofencing_IGeofenceStateChangeReport[] = L"Windows.Devices.Geolocation.Geofencing.IGeofenceStateChangeReport";
./winrt/windows.devices.geolocation.geofencing.h:3102:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_Geofencing_IGeofenceMonitorStatics[] = L"Windows.Devices.Geolocation.Geofencing.IGeofenceMonitorStatics";
./winrt/windows.devices.geolocation.geofencing.h:3241:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_Geofencing_IGeofenceMonitor[] = L"Windows.Devices.Geolocation.Geofencing.IGeofenceMonitor";
./winrt/windows.devices.geolocation.geofencing.h:3455:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geofencing_Geofence[] = L"Windows.Devices.Geolocation.Geofencing.Geofence";
./winrt/windows.devices.geolocation.geofencing.h:3459:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geofencing_GeofenceMonitor[] = L"Windows.Devices.Geolocation.Geofencing.GeofenceMonitor";
./winrt/windows.devices.geolocation.geofencing.h:3463:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geofencing_GeofenceStateChangeReport[] = L"Windows.Devices.Geolocation.Geofencing.GeofenceStateChangeReport";
./winrt/windows.devices.geolocation.h:1696:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeoshape[] = L"Windows.Devices.Geolocation.IGeoshape";
./winrt/windows.devices.geolocation.h:1989:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeopoint[] = L"Windows.Devices.Geolocation.IGeopoint";
./winrt/windows.devices.geolocation.h:2126:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeopointFactory[] = L"Windows.Devices.Geolocation.IGeopointFactory";
./winrt/windows.devices.geolocation.h:2295:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocoordinateSatelliteData[] = L"Windows.Devices.Geolocation.IGeocoordinateSatelliteData";
./winrt/windows.devices.geolocation.h:2452:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocoordinate[] = L"Windows.Devices.Geolocation.IGeocoordinate";
./winrt/windows.devices.geolocation.h:2659:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocoordinateWithPositionData[] = L"Windows.Devices.Geolocation.IGeocoordinateWithPositionData";
./winrt/windows.devices.geolocation.h:2806:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocoordinateWithPoint[] = L"Windows.Devices.Geolocation.IGeocoordinateWithPoint";
./winrt/windows.devices.geolocation.h:2943:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_ICivicAddress[] = L"Windows.Devices.Geolocation.ICivicAddress";
./winrt/windows.devices.geolocation.h:3120:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeoposition[] = L"Windows.Devices.Geolocation.IGeoposition";
./winrt/windows.devices.geolocation.h:3267:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IPositionChangedEventArgs[] = L"Windows.Devices.Geolocation.IPositionChangedEventArgs";
./winrt/windows.devices.geolocation.h:3404:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IStatusChangedEventArgs[] = L"Windows.Devices.Geolocation.IStatusChangedEventArgs";
./winrt/windows.devices.geolocation.h:3541:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeolocator[] = L"Windows.Devices.Geolocation.IGeolocator";
./winrt/windows.devices.geolocation.h:3806:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeolocatorWithScalarAccuracy[] = L"Windows.Devices.Geolocation.IGeolocatorWithScalarAccuracy";
./winrt/windows.devices.geolocation.h:3953:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocircle[] = L"Windows.Devices.Geolocation.IGeocircle";
./winrt/windows.devices.geolocation.h:4100:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Geolocation_IGeocircleFactory[] = L"Windows.Devices.Geolocation.IGeocircleFactory";
./winrt/windows.devices.geolocation.h:4276:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geopoint[] = L"Windows.Devices.Geolocation.Geopoint";
./winrt/windows.devices.geolocation.h:4280:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_GeocoordinateSatelliteData[] = L"Windows.Devices.Geolocation.GeocoordinateSatelliteData";
./winrt/windows.devices.geolocation.h:4284:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geocoordinate[] = L"Windows.Devices.Geolocation.Geocoordinate";
./winrt/windows.devices.geolocation.h:4288:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_CivicAddress[] = L"Windows.Devices.Geolocation.CivicAddress";
./winrt/windows.devices.geolocation.h:4292:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geoposition[] = L"Windows.Devices.Geolocation.Geoposition";
./winrt/windows.devices.geolocation.h:4296:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_PositionChangedEventArgs[] = L"Windows.Devices.Geolocation.PositionChangedEventArgs";
./winrt/windows.devices.geolocation.h:4300:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_StatusChangedEventArgs[] = L"Windows.Devices.Geolocation.StatusChangedEventArgs";
./winrt/windows.devices.geolocation.h:4304:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geolocator[] = L"Windows.Devices.Geolocation.Geolocator";
./winrt/windows.devices.geolocation.h:4308:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Geolocation_Geocircle[] = L"Windows.Devices.Geolocation.Geocircle";
./winrt/windows.devices.humaninterfacedevice.h:4909:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidDeviceStatics[] = L"Windows.Devices.HumanInterfaceDevice.IHidDeviceStatics";
./winrt/windows.devices.humaninterfacedevice.h:5131:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidBooleanControlDescription[] = L"Windows.Devices.HumanInterfaceDevice.IHidBooleanControlDescription";
./winrt/windows.devices.humaninterfacedevice.h:5318:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidNumericControlDescription[] = L"Windows.Devices.HumanInterfaceDevice.IHidNumericControlDescription";
./winrt/windows.devices.humaninterfacedevice.h:5605:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidCollection[] = L"Windows.Devices.HumanInterfaceDevice.IHidCollection";
./winrt/windows.devices.humaninterfacedevice.h:5772:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidInputReport[] = L"Windows.Devices.HumanInterfaceDevice.IHidInputReport";
./winrt/windows.devices.humaninterfacedevice.h:5991:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidOutputReport[] = L"Windows.Devices.HumanInterfaceDevice.IHidOutputReport";
./winrt/windows.devices.humaninterfacedevice.h:6200:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidFeatureReport[] = L"Windows.Devices.HumanInterfaceDevice.IHidFeatureReport";
./winrt/windows.devices.humaninterfacedevice.h:6409:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidInputReportReceivedEventArgs[] = L"Windows.Devices.HumanInterfaceDevice.IHidInputReportReceivedEventArgs";
./winrt/windows.devices.humaninterfacedevice.h:6546:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidBooleanControl[] = L"Windows.Devices.HumanInterfaceDevice.IHidBooleanControl";
./winrt/windows.devices.humaninterfacedevice.h:6733:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidNumericControl[] = L"Windows.Devices.HumanInterfaceDevice.IHidNumericControl";
./winrt/windows.devices.humaninterfacedevice.h:6950:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_HumanInterfaceDevice_IHidDevice[] = L"Windows.Devices.HumanInterfaceDevice.IHidDevice";
./winrt/windows.devices.humaninterfacedevice.h:7294:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidDevice[] = L"Windows.Devices.HumanInterfaceDevice.HidDevice";
./winrt/windows.devices.humaninterfacedevice.h:7298:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidInputReport[] = L"Windows.Devices.HumanInterfaceDevice.HidInputReport";
./winrt/windows.devices.humaninterfacedevice.h:7302:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidFeatureReport[] = L"Windows.Devices.HumanInterfaceDevice.HidFeatureReport";
./winrt/windows.devices.humaninterfacedevice.h:7306:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidOutputReport[] = L"Windows.Devices.HumanInterfaceDevice.HidOutputReport";
./winrt/windows.devices.humaninterfacedevice.h:7310:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidBooleanControlDescription[] = L"Windows.Devices.HumanInterfaceDevice.HidBooleanControlDescription";
./winrt/windows.devices.humaninterfacedevice.h:7314:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidNumericControlDescription[] = L"Windows.Devices.HumanInterfaceDevice.HidNumericControlDescription";
./winrt/windows.devices.humaninterfacedevice.h:7318:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidInputReportReceivedEventArgs[] = L"Windows.Devices.HumanInterfaceDevice.HidInputReportReceivedEventArgs";
./winrt/windows.devices.humaninterfacedevice.h:7322:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidCollection[] = L"Windows.Devices.HumanInterfaceDevice.HidCollection";
./winrt/windows.devices.humaninterfacedevice.h:7326:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidBooleanControl[] = L"Windows.Devices.HumanInterfaceDevice.HidBooleanControl";
./winrt/windows.devices.humaninterfacedevice.h:7330:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_HumanInterfaceDevice_HidNumericControl[] = L"Windows.Devices.HumanInterfaceDevice.HidNumericControl";
./winrt/windows.devices.input.h:2051:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IMouseCapabilities[] = L"Windows.Devices.Input.IMouseCapabilities";
./winrt/windows.devices.input.h:2296:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IKeyboardCapabilities[] = L"Windows.Devices.Input.IKeyboardCapabilities";
./winrt/windows.devices.input.h:2433:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_ITouchCapabilities[] = L"Windows.Devices.Input.ITouchCapabilities";
./winrt/windows.devices.input.h:2580:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IPointerDeviceStatics[] = L"Windows.Devices.Input.IPointerDeviceStatics";
./winrt/windows.devices.input.h:2729:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IPointerDevice[] = L"Windows.Devices.Input.IPointerDevice";
./winrt/windows.devices.input.h:2916:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IMouseEventArgs[] = L"Windows.Devices.Input.IMouseEventArgs";
./winrt/windows.devices.input.h:3053:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IMouseDevice[] = L"Windows.Devices.Input.IMouseDevice";
./winrt/windows.devices.input.h:3202:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Input_IMouseDeviceStatics[] = L"Windows.Devices.Input.IMouseDeviceStatics";
./winrt/windows.devices.input.h:3340:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_PointerDevice[] = L"Windows.Devices.Input.PointerDevice";
./winrt/windows.devices.input.h:3344:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_MouseDevice[] = L"Windows.Devices.Input.MouseDevice";
./winrt/windows.devices.input.h:3348:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_MouseEventArgs[] = L"Windows.Devices.Input.MouseEventArgs";
./winrt/windows.devices.input.h:3352:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_MouseCapabilities[] = L"Windows.Devices.Input.MouseCapabilities";
./winrt/windows.devices.input.h:3356:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_KeyboardCapabilities[] = L"Windows.Devices.Input.KeyboardCapabilities";
./winrt/windows.devices.input.h:3360:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Input_TouchCapabilities[] = L"Windows.Devices.Input.TouchCapabilities";
./winrt/windows.devices.pointofservice.h:5939:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IUnifiedPosErrorData[] = L"Windows.Devices.PointOfService.IUnifiedPosErrorData";
./winrt/windows.devices.pointofservice.h:6365:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerStatusUpdatedEventArgs[] = L"Windows.Devices.PointOfService.IBarcodeScannerStatusUpdatedEventArgs";
./winrt/windows.devices.pointofservice.h:6512:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeSymbologiesStatics[] = L"Windows.Devices.PointOfService.IBarcodeSymbologiesStatics";
./winrt/windows.devices.pointofservice.h:7581:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.IBarcodeScannerDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:7718:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerReport[] = L"Windows.Devices.PointOfService.IBarcodeScannerReport";
./winrt/windows.devices.pointofservice.h:7875:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerErrorOccurredEventArgs[] = L"Windows.Devices.PointOfService.IBarcodeScannerErrorOccurredEventArgs";
./winrt/windows.devices.pointofservice.h:8032:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerImagePreviewReceivedEventArgs[] = L"Windows.Devices.PointOfService.IBarcodeScannerImagePreviewReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:8169:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerCapabilities[] = L"Windows.Devices.PointOfService.IBarcodeScannerCapabilities";
./winrt/windows.devices.pointofservice.h:8336:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScannerStatics[] = L"Windows.Devices.PointOfService.IBarcodeScannerStatics";
./winrt/windows.devices.pointofservice.h:8495:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IBarcodeScanner[] = L"Windows.Devices.PointOfService.IBarcodeScanner";
./winrt/windows.devices.pointofservice.h:8742:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderEncryptionAlgorithmsStatics[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderEncryptionAlgorithmsStatics";
./winrt/windows.devices.pointofservice.h:8899:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderCardTypesStatics[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderCardTypesStatics";
./winrt/windows.devices.pointofservice.h:9066:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderTrackData[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderTrackData";
./winrt/windows.devices.pointofservice.h:9223:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderReport[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderReport";
./winrt/windows.devices.pointofservice.h:9440:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderBankCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderBankCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:9657:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderAamvaCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderAamvaCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:9974:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderVendorSpecificCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderVendorSpecificCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:10111:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderErrorOccurredEventArgs[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderErrorOccurredEventArgs";
./winrt/windows.devices.pointofservice.h:10298:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderStatusUpdatedEventArgs[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderStatusUpdatedEventArgs";
./winrt/windows.devices.pointofservice.h:10445:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderCapabilities[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderCapabilities";
./winrt/windows.devices.pointofservice.h:10682:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReaderStatics[] = L"Windows.Devices.PointOfService.IMagneticStripeReaderStatics";
./winrt/windows.devices.pointofservice.h:10841:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IMagneticStripeReader[] = L"Windows.Devices.PointOfService.IMagneticStripeReader";
./winrt/windows.devices.pointofservice.h:11076:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IClaimedBarcodeScanner[] = L"Windows.Devices.PointOfService.IClaimedBarcodeScanner";
./winrt/windows.devices.pointofservice.h:11471:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_PointOfService_IClaimedMagneticStripeReader[] = L"Windows.Devices.PointOfService.IClaimedMagneticStripeReader";
./winrt/windows.devices.pointofservice.h:11953:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_UnifiedPosErrorData[] = L"Windows.Devices.PointOfService.UnifiedPosErrorData";
./winrt/windows.devices.pointofservice.h:11957:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerStatusUpdatedEventArgs[] = L"Windows.Devices.PointOfService.BarcodeScannerStatusUpdatedEventArgs";
./winrt/windows.devices.pointofservice.h:11961:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeSymbologies[] = L"Windows.Devices.PointOfService.BarcodeSymbologies";
./winrt/windows.devices.pointofservice.h:11965:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerReport[] = L"Windows.Devices.PointOfService.BarcodeScannerReport";
./winrt/windows.devices.pointofservice.h:11969:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.BarcodeScannerDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:11973:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerErrorOccurredEventArgs[] = L"Windows.Devices.PointOfService.BarcodeScannerErrorOccurredEventArgs";
./winrt/windows.devices.pointofservice.h:11977:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerImagePreviewReceivedEventArgs[] = L"Windows.Devices.PointOfService.BarcodeScannerImagePreviewReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:11981:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScannerCapabilities[] = L"Windows.Devices.PointOfService.BarcodeScannerCapabilities";
./winrt/windows.devices.pointofservice.h:11985:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_BarcodeScanner[] = L"Windows.Devices.PointOfService.BarcodeScanner";
./winrt/windows.devices.pointofservice.h:11989:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_ClaimedBarcodeScanner[] = L"Windows.Devices.PointOfService.ClaimedBarcodeScanner";
./winrt/windows.devices.pointofservice.h:11993:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderEncryptionAlgorithms[] = L"Windows.Devices.PointOfService.MagneticStripeReaderEncryptionAlgorithms";
./winrt/windows.devices.pointofservice.h:11997:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderCardTypes[] = L"Windows.Devices.PointOfService.MagneticStripeReaderCardTypes";
./winrt/windows.devices.pointofservice.h:12001:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderTrackData[] = L"Windows.Devices.PointOfService.MagneticStripeReaderTrackData";
./winrt/windows.devices.pointofservice.h:12005:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderReport[] = L"Windows.Devices.PointOfService.MagneticStripeReaderReport";
./winrt/windows.devices.pointofservice.h:12009:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderBankCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.MagneticStripeReaderBankCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:12013:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderAamvaCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.MagneticStripeReaderAamvaCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:12017:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs[] = L"Windows.Devices.PointOfService.MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs";
./winrt/windows.devices.pointofservice.h:12021:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderErrorOccurredEventArgs[] = L"Windows.Devices.PointOfService.MagneticStripeReaderErrorOccurredEventArgs";
./winrt/windows.devices.pointofservice.h:12025:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderStatusUpdatedEventArgs[] = L"Windows.Devices.PointOfService.MagneticStripeReaderStatusUpdatedEventArgs";
./winrt/windows.devices.pointofservice.h:12029:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReaderCapabilities[] = L"Windows.Devices.PointOfService.MagneticStripeReaderCapabilities";
./winrt/windows.devices.pointofservice.h:12033:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_ClaimedMagneticStripeReader[] = L"Windows.Devices.PointOfService.ClaimedMagneticStripeReader";
./winrt/windows.devices.pointofservice.h:12037:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_PointOfService_MagneticStripeReader[] = L"Windows.Devices.PointOfService.MagneticStripeReader";
./winrt/windows.devices.portable.h:148:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Portable_IStorageDeviceStatics[] = L"Windows.Devices.Portable.IStorageDeviceStatics";
./winrt/windows.devices.portable.h:344:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Portable_IServiceDeviceStatics[] = L"Windows.Devices.Portable.IServiceDeviceStatics";
./winrt/windows.devices.portable.h:496:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Portable_StorageDevice[] = L"Windows.Devices.Portable.StorageDevice";
./winrt/windows.devices.portable.h:500:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Portable_ServiceDevice[] = L"Windows.Devices.Portable.ServiceDevice";
./winrt/windows.devices.printers.extensions.h:511:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintTaskConfigurationSaveRequestedDeferral[] = L"Windows.Devices.Printers.Extensions.IPrintTaskConfigurationSaveRequestedDeferral";
./winrt/windows.devices.printers.extensions.h:648:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintTaskConfigurationSaveRequest[] = L"Windows.Devices.Printers.Extensions.IPrintTaskConfigurationSaveRequest";
./winrt/windows.devices.printers.extensions.h:815:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintTaskConfigurationSaveRequestedEventArgs[] = L"Windows.Devices.Printers.Extensions.IPrintTaskConfigurationSaveRequestedEventArgs";
./winrt/windows.devices.printers.extensions.h:954:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintTaskConfiguration[] = L"Windows.Devices.Printers.Extensions.IPrintTaskConfiguration";
./winrt/windows.devices.printers.extensions.h:1115:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintNotificationEventDetails[] = L"Windows.Devices.Printers.Extensions.IPrintNotificationEventDetails";
./winrt/windows.devices.printers.extensions.h:1274:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Printers_Extensions_IPrintExtensionContextStatic[] = L"Windows.Devices.Printers.Extensions.IPrintExtensionContextStatic";
./winrt/windows.devices.printers.extensions.h:1416:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintTaskConfigurationSaveRequestedDeferral[] = L"Windows.Devices.Printers.Extensions.PrintTaskConfigurationSaveRequestedDeferral";
./winrt/windows.devices.printers.extensions.h:1420:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintTaskConfigurationSaveRequest[] = L"Windows.Devices.Printers.Extensions.PrintTaskConfigurationSaveRequest";
./winrt/windows.devices.printers.extensions.h:1424:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintTaskConfigurationSaveRequestedEventArgs[] = L"Windows.Devices.Printers.Extensions.PrintTaskConfigurationSaveRequestedEventArgs";
./winrt/windows.devices.printers.extensions.h:1428:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintTaskConfiguration[] = L"Windows.Devices.Printers.Extensions.PrintTaskConfiguration";
./winrt/windows.devices.printers.extensions.h:1432:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintNotificationEventDetails[] = L"Windows.Devices.Printers.Extensions.PrintNotificationEventDetails";
./winrt/windows.devices.printers.extensions.h:1436:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Printers_Extensions_PrintExtensionContext[] = L"Windows.Devices.Printers.Extensions.PrintExtensionContext";
./winrt/windows.devices.sensors.h:2840:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IAccelerometerStatics[] = L"Windows.Devices.Sensors.IAccelerometerStatics";
./winrt/windows.devices.sensors.h:3025:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IAccelerometer[] = L"Windows.Devices.Sensors.IAccelerometer";
./winrt/windows.devices.sensors.h:3236:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IAccelerometerReading[] = L"Windows.Devices.Sensors.IAccelerometerReading";
./winrt/windows.devices.sensors.h:3403:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IAccelerometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.IAccelerometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:3540:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IAccelerometerShakenEventArgs[] = L"Windows.Devices.Sensors.IAccelerometerShakenEventArgs";
./winrt/windows.devices.sensors.h:3677:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IInclinometerStatics[] = L"Windows.Devices.Sensors.IInclinometerStatics";
./winrt/windows.devices.sensors.h:3814:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IInclinometer[] = L"Windows.Devices.Sensors.IInclinometer";
./winrt/windows.devices.sensors.h:4003:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IInclinometerReading[] = L"Windows.Devices.Sensors.IInclinometerReading";
./winrt/windows.devices.sensors.h:4170:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IInclinometerReadingYawAccuracy[] = L"Windows.Devices.Sensors.IInclinometerReadingYawAccuracy";
./winrt/windows.devices.sensors.h:4307:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IInclinometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.IInclinometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:4444:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IGyrometerStatics[] = L"Windows.Devices.Sensors.IGyrometerStatics";
./winrt/windows.devices.sensors.h:4581:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IGyrometer[] = L"Windows.Devices.Sensors.IGyrometer";
./winrt/windows.devices.sensors.h:4770:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IGyrometerReading[] = L"Windows.Devices.Sensors.IGyrometerReading";
./winrt/windows.devices.sensors.h:4937:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IGyrometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.IGyrometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:5074:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ICompassStatics[] = L"Windows.Devices.Sensors.ICompassStatics";
./winrt/windows.devices.sensors.h:5211:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ICompass[] = L"Windows.Devices.Sensors.ICompass";
./winrt/windows.devices.sensors.h:5400:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ICompassReading[] = L"Windows.Devices.Sensors.ICompassReading";
./winrt/windows.devices.sensors.h:5557:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ICompassReadingHeadingAccuracy[] = L"Windows.Devices.Sensors.ICompassReadingHeadingAccuracy";
./winrt/windows.devices.sensors.h:5694:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ICompassReadingChangedEventArgs[] = L"Windows.Devices.Sensors.ICompassReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:5831:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ILightSensorStatics[] = L"Windows.Devices.Sensors.ILightSensorStatics";
./winrt/windows.devices.sensors.h:5968:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ILightSensor[] = L"Windows.Devices.Sensors.ILightSensor";
./winrt/windows.devices.sensors.h:6157:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ILightSensorReading[] = L"Windows.Devices.Sensors.ILightSensorReading";
./winrt/windows.devices.sensors.h:6304:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ILightSensorReadingChangedEventArgs[] = L"Windows.Devices.Sensors.ILightSensorReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:6441:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ISensorRotationMatrix[] = L"Windows.Devices.Sensors.ISensorRotationMatrix";
./winrt/windows.devices.sensors.h:6658:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ISensorQuaternion[] = L"Windows.Devices.Sensors.ISensorQuaternion";
./winrt/windows.devices.sensors.h:6825:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IOrientationSensorStatics[] = L"Windows.Devices.Sensors.IOrientationSensorStatics";
./winrt/windows.devices.sensors.h:6962:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IOrientationSensor[] = L"Windows.Devices.Sensors.IOrientationSensor";
./winrt/windows.devices.sensors.h:7151:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IOrientationSensorReading[] = L"Windows.Devices.Sensors.IOrientationSensorReading";
./winrt/windows.devices.sensors.h:7308:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IOrientationSensorReadingYawAccuracy[] = L"Windows.Devices.Sensors.IOrientationSensorReadingYawAccuracy";
./winrt/windows.devices.sensors.h:7445:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_IOrientationSensorReadingChangedEventArgs[] = L"Windows.Devices.Sensors.IOrientationSensorReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:7582:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ISimpleOrientationSensorStatics[] = L"Windows.Devices.Sensors.ISimpleOrientationSensorStatics";
./winrt/windows.devices.sensors.h:7719:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ISimpleOrientationSensor[] = L"Windows.Devices.Sensors.ISimpleOrientationSensor";
./winrt/windows.devices.sensors.h:7878:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sensors_ISimpleOrientationSensorOrientationChangedEventArgs[] = L"Windows.Devices.Sensors.ISimpleOrientationSensorOrientationChangedEventArgs";
./winrt/windows.devices.sensors.h:8026:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_Accelerometer[] = L"Windows.Devices.Sensors.Accelerometer";
./winrt/windows.devices.sensors.h:8030:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_AccelerometerReading[] = L"Windows.Devices.Sensors.AccelerometerReading";
./winrt/windows.devices.sensors.h:8034:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_AccelerometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.AccelerometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8038:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_AccelerometerShakenEventArgs[] = L"Windows.Devices.Sensors.AccelerometerShakenEventArgs";
./winrt/windows.devices.sensors.h:8042:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_Inclinometer[] = L"Windows.Devices.Sensors.Inclinometer";
./winrt/windows.devices.sensors.h:8046:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_InclinometerReading[] = L"Windows.Devices.Sensors.InclinometerReading";
./winrt/windows.devices.sensors.h:8050:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_InclinometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.InclinometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8054:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_Gyrometer[] = L"Windows.Devices.Sensors.Gyrometer";
./winrt/windows.devices.sensors.h:8058:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_GyrometerReading[] = L"Windows.Devices.Sensors.GyrometerReading";
./winrt/windows.devices.sensors.h:8062:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_GyrometerReadingChangedEventArgs[] = L"Windows.Devices.Sensors.GyrometerReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8066:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_Compass[] = L"Windows.Devices.Sensors.Compass";
./winrt/windows.devices.sensors.h:8070:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_CompassReading[] = L"Windows.Devices.Sensors.CompassReading";
./winrt/windows.devices.sensors.h:8074:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_CompassReadingChangedEventArgs[] = L"Windows.Devices.Sensors.CompassReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8078:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_LightSensor[] = L"Windows.Devices.Sensors.LightSensor";
./winrt/windows.devices.sensors.h:8082:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_LightSensorReading[] = L"Windows.Devices.Sensors.LightSensorReading";
./winrt/windows.devices.sensors.h:8086:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_LightSensorReadingChangedEventArgs[] = L"Windows.Devices.Sensors.LightSensorReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8090:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_SensorRotationMatrix[] = L"Windows.Devices.Sensors.SensorRotationMatrix";
./winrt/windows.devices.sensors.h:8094:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_SensorQuaternion[] = L"Windows.Devices.Sensors.SensorQuaternion";
./winrt/windows.devices.sensors.h:8098:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_OrientationSensor[] = L"Windows.Devices.Sensors.OrientationSensor";
./winrt/windows.devices.sensors.h:8102:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_OrientationSensorReading[] = L"Windows.Devices.Sensors.OrientationSensorReading";
./winrt/windows.devices.sensors.h:8106:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_OrientationSensorReadingChangedEventArgs[] = L"Windows.Devices.Sensors.OrientationSensorReadingChangedEventArgs";
./winrt/windows.devices.sensors.h:8110:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_SimpleOrientationSensor[] = L"Windows.Devices.Sensors.SimpleOrientationSensor";
./winrt/windows.devices.sensors.h:8114:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sensors_SimpleOrientationSensorOrientationChangedEventArgs[] = L"Windows.Devices.Sensors.SimpleOrientationSensorOrientationChangedEventArgs";
./winrt/windows.devices.smartcards.h:4834:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardReaderStatics[] = L"Windows.Devices.SmartCards.ISmartCardReaderStatics";
./winrt/windows.devices.smartcards.h:4995:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardReader[] = L"Windows.Devices.SmartCards.ISmartCardReader";
./winrt/windows.devices.smartcards.h:5216:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ICardAddedEventArgs[] = L"Windows.Devices.SmartCards.ICardAddedEventArgs";
./winrt/windows.devices.smartcards.h:5353:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ICardRemovedEventArgs[] = L"Windows.Devices.SmartCards.ICardRemovedEventArgs";
./winrt/windows.devices.smartcards.h:5490:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCard[] = L"Windows.Devices.SmartCards.ISmartCard";
./winrt/windows.devices.smartcards.h:5647:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardProvisioningStatics[] = L"Windows.Devices.SmartCards.ISmartCardProvisioningStatics";
./winrt/windows.devices.smartcards.h:5832:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardProvisioning[] = L"Windows.Devices.SmartCards.ISmartCardProvisioning";
./winrt/windows.devices.smartcards.h:6021:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardPinResetRequest[] = L"Windows.Devices.SmartCards.ISmartCardPinResetRequest";
./winrt/windows.devices.smartcards.h:6188:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardPinResetDeferral[] = L"Windows.Devices.SmartCards.ISmartCardPinResetDeferral";
./winrt/windows.devices.smartcards.h:6323:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardPinPolicy[] = L"Windows.Devices.SmartCards.ISmartCardPinPolicy";
./winrt/windows.devices.smartcards.h:6570:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_SmartCards_ISmartCardChallengeContext[] = L"Windows.Devices.SmartCards.ISmartCardChallengeContext";
./winrt/windows.devices.smartcards.h:6764:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardReader[] = L"Windows.Devices.SmartCards.SmartCardReader";
./winrt/windows.devices.smartcards.h:6768:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCard[] = L"Windows.Devices.SmartCards.SmartCard";
./winrt/windows.devices.smartcards.h:6772:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_CardAddedEventArgs[] = L"Windows.Devices.SmartCards.CardAddedEventArgs";
./winrt/windows.devices.smartcards.h:6776:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_CardRemovedEventArgs[] = L"Windows.Devices.SmartCards.CardRemovedEventArgs";
./winrt/windows.devices.smartcards.h:6780:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardProvisioning[] = L"Windows.Devices.SmartCards.SmartCardProvisioning";
./winrt/windows.devices.smartcards.h:6784:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardPinPolicy[] = L"Windows.Devices.SmartCards.SmartCardPinPolicy";
./winrt/windows.devices.smartcards.h:6788:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardChallengeContext[] = L"Windows.Devices.SmartCards.SmartCardChallengeContext";
./winrt/windows.devices.smartcards.h:6792:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardPinResetRequest[] = L"Windows.Devices.SmartCards.SmartCardPinResetRequest";
./winrt/windows.devices.smartcards.h:6796:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_SmartCards_SmartCardPinResetDeferral[] = L"Windows.Devices.SmartCards.SmartCardPinResetDeferral";
./winrt/windows.devices.sms.h:4097:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsMessage[] = L"Windows.Devices.Sms.ISmsMessage";
./winrt/windows.devices.sms.h:4244:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsBinaryMessage[] = L"Windows.Devices.Sms.ISmsBinaryMessage";
./winrt/windows.devices.sms.h:4415:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsTextMessage[] = L"Windows.Devices.Sms.ISmsTextMessage";
./winrt/windows.devices.sms.h:4674:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsTextMessageStatics[] = L"Windows.Devices.Sms.ISmsTextMessageStatics";
./winrt/windows.devices.sms.h:4829:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsDeviceMessageStore[] = L"Windows.Devices.Sms.ISmsDeviceMessageStore";
./winrt/windows.devices.sms.h:5014:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsMessageReceivedEventArgs[] = L"Windows.Devices.Sms.ISmsMessageReceivedEventArgs";
./winrt/windows.devices.sms.h:5161:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsDeviceStatics[] = L"Windows.Devices.Sms.ISmsDeviceStatics";
./winrt/windows.devices.sms.h:5320:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsDeviceStatics2[] = L"Windows.Devices.Sms.ISmsDeviceStatics2";
./winrt/windows.devices.sms.h:5459:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsDevice[] = L"Windows.Devices.Sms.ISmsDevice";
./winrt/windows.devices.sms.h:5694:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsReceivedEventDetails[] = L"Windows.Devices.Sms.ISmsReceivedEventDetails";
./winrt/windows.devices.sms.h:5841:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Sms_ISmsReceivedEventDetails2[] = L"Windows.Devices.Sms.ISmsReceivedEventDetails2";
./winrt/windows.devices.sms.h:5989:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsBinaryMessage[] = L"Windows.Devices.Sms.SmsBinaryMessage";
./winrt/windows.devices.sms.h:5993:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsTextMessage[] = L"Windows.Devices.Sms.SmsTextMessage";
./winrt/windows.devices.sms.h:5997:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_DeleteSmsMessageOperation[] = L"Windows.Devices.Sms.DeleteSmsMessageOperation";
./winrt/windows.devices.sms.h:6001:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_DeleteSmsMessagesOperation[] = L"Windows.Devices.Sms.DeleteSmsMessagesOperation";
./winrt/windows.devices.sms.h:6005:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_GetSmsMessageOperation[] = L"Windows.Devices.Sms.GetSmsMessageOperation";
./winrt/windows.devices.sms.h:6009:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_GetSmsMessagesOperation[] = L"Windows.Devices.Sms.GetSmsMessagesOperation";
./winrt/windows.devices.sms.h:6013:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsDeviceMessageStore[] = L"Windows.Devices.Sms.SmsDeviceMessageStore";
./winrt/windows.devices.sms.h:6017:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SendSmsMessageOperation[] = L"Windows.Devices.Sms.SendSmsMessageOperation";
./winrt/windows.devices.sms.h:6021:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsMessageReceivedEventArgs[] = L"Windows.Devices.Sms.SmsMessageReceivedEventArgs";
./winrt/windows.devices.sms.h:6025:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsDevice[] = L"Windows.Devices.Sms.SmsDevice";
./winrt/windows.devices.sms.h:6029:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_GetSmsDeviceOperation[] = L"Windows.Devices.Sms.GetSmsDeviceOperation";
./winrt/windows.devices.sms.h:6033:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Sms_SmsReceivedEventDetails[] = L"Windows.Devices.Sms.SmsReceivedEventDetails";
./winrt/windows.devices.usb.h:9816:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbControlRequestType[] = L"Windows.Devices.Usb.IUsbControlRequestType";
./winrt/windows.devices.usb.h:10159:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbSetupPacketFactory[] = L"Windows.Devices.Usb.IUsbSetupPacketFactory";
./winrt/windows.devices.usb.h:10298:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbSetupPacket[] = L"Windows.Devices.Usb.IUsbSetupPacket";
./winrt/windows.devices.usb.h:10525:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDeviceClass[] = L"Windows.Devices.Usb.IUsbDeviceClass";
./winrt/windows.devices.usb.h:10712:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDeviceClassesStatics[] = L"Windows.Devices.Usb.IUsbDeviceClassesStatics";
./winrt/windows.devices.usb.h:10929:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDeviceClasses[] = L"Windows.Devices.Usb.IUsbDeviceClasses";
./winrt/windows.devices.usb.h:11056:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDeviceStatics[] = L"Windows.Devices.Usb.IUsbDeviceStatics";
./winrt/windows.devices.usb.h:11249:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDeviceDescriptor[] = L"Windows.Devices.Usb.IUsbDeviceDescriptor";
./winrt/windows.devices.usb.h:11436:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbConfigurationDescriptor[] = L"Windows.Devices.Usb.IUsbConfigurationDescriptor";
./winrt/windows.devices.usb.h:11603:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbConfigurationDescriptorStatics[] = L"Windows.Devices.Usb.IUsbConfigurationDescriptorStatics";
./winrt/windows.devices.usb.h:11756:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterfaceDescriptor[] = L"Windows.Devices.Usb.IUsbInterfaceDescriptor";
./winrt/windows.devices.usb.h:11933:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterfaceDescriptorStatics[] = L"Windows.Devices.Usb.IUsbInterfaceDescriptorStatics";
./winrt/windows.devices.usb.h:12086:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbEndpointDescriptor[] = L"Windows.Devices.Usb.IUsbEndpointDescriptor";
./winrt/windows.devices.usb.h:12283:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbEndpointDescriptorStatics[] = L"Windows.Devices.Usb.IUsbEndpointDescriptorStatics";
./winrt/windows.devices.usb.h:12436:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDescriptor[] = L"Windows.Devices.Usb.IUsbDescriptor";
./winrt/windows.devices.usb.h:12593:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterruptInEventArgs[] = L"Windows.Devices.Usb.IUsbInterruptInEventArgs";
./winrt/windows.devices.usb.h:12730:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbBulkInPipe[] = L"Windows.Devices.Usb.IUsbBulkInPipe";
./winrt/windows.devices.usb.h:12925:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterruptInPipe[] = L"Windows.Devices.Usb.IUsbInterruptInPipe";
./winrt/windows.devices.usb.h:13094:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbBulkOutPipe[] = L"Windows.Devices.Usb.IUsbBulkOutPipe";
./winrt/windows.devices.usb.h:13271:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterruptOutPipe[] = L"Windows.Devices.Usb.IUsbInterruptOutPipe";
./winrt/windows.devices.usb.h:13448:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbConfiguration[] = L"Windows.Devices.Usb.IUsbConfiguration";
./winrt/windows.devices.usb.h:13605:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterface[] = L"Windows.Devices.Usb.IUsbInterface";
./winrt/windows.devices.usb.h:13802:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterfaceSetting[] = L"Windows.Devices.Usb.IUsbInterfaceSetting";
./winrt/windows.devices.usb.h:14009:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbBulkInEndpointDescriptor[] = L"Windows.Devices.Usb.IUsbBulkInEndpointDescriptor";
./winrt/windows.devices.usb.h:14166:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterruptInEndpointDescriptor[] = L"Windows.Devices.Usb.IUsbInterruptInEndpointDescriptor";
./winrt/windows.devices.usb.h:14333:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbBulkOutEndpointDescriptor[] = L"Windows.Devices.Usb.IUsbBulkOutEndpointDescriptor";
./winrt/windows.devices.usb.h:14490:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbInterruptOutEndpointDescriptor[] = L"Windows.Devices.Usb.IUsbInterruptOutEndpointDescriptor";
./winrt/windows.devices.usb.h:14657:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_Usb_IUsbDevice[] = L"Windows.Devices.Usb.IUsbDevice";
./winrt/windows.devices.usb.h:14867:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbControlRequestType[] = L"Windows.Devices.Usb.UsbControlRequestType";
./winrt/windows.devices.usb.h:14871:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbSetupPacket[] = L"Windows.Devices.Usb.UsbSetupPacket";
./winrt/windows.devices.usb.h:14875:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbDeviceClass[] = L"Windows.Devices.Usb.UsbDeviceClass";
./winrt/windows.devices.usb.h:14879:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbDeviceClasses[] = L"Windows.Devices.Usb.UsbDeviceClasses";
./winrt/windows.devices.usb.h:14883:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbDevice[] = L"Windows.Devices.Usb.UsbDevice";
./winrt/windows.devices.usb.h:14887:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterface[] = L"Windows.Devices.Usb.UsbInterface";
./winrt/windows.devices.usb.h:14891:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbDeviceDescriptor[] = L"Windows.Devices.Usb.UsbDeviceDescriptor";
./winrt/windows.devices.usb.h:14895:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbConfiguration[] = L"Windows.Devices.Usb.UsbConfiguration";
./winrt/windows.devices.usb.h:14899:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbDescriptor[] = L"Windows.Devices.Usb.UsbDescriptor";
./winrt/windows.devices.usb.h:14903:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbConfigurationDescriptor[] = L"Windows.Devices.Usb.UsbConfigurationDescriptor";
./winrt/windows.devices.usb.h:14907:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterfaceDescriptor[] = L"Windows.Devices.Usb.UsbInterfaceDescriptor";
./winrt/windows.devices.usb.h:14911:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbBulkInEndpointDescriptor[] = L"Windows.Devices.Usb.UsbBulkInEndpointDescriptor";
./winrt/windows.devices.usb.h:14915:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterruptInEndpointDescriptor[] = L"Windows.Devices.Usb.UsbInterruptInEndpointDescriptor";
./winrt/windows.devices.usb.h:14919:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbBulkOutEndpointDescriptor[] = L"Windows.Devices.Usb.UsbBulkOutEndpointDescriptor";
./winrt/windows.devices.usb.h:14923:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterruptOutEndpointDescriptor[] = L"Windows.Devices.Usb.UsbInterruptOutEndpointDescriptor";
./winrt/windows.devices.usb.h:14927:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbEndpointDescriptor[] = L"Windows.Devices.Usb.UsbEndpointDescriptor";
./winrt/windows.devices.usb.h:14931:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterruptInEventArgs[] = L"Windows.Devices.Usb.UsbInterruptInEventArgs";
./winrt/windows.devices.usb.h:14935:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterruptInPipe[] = L"Windows.Devices.Usb.UsbInterruptInPipe";
./winrt/windows.devices.usb.h:14939:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbBulkInPipe[] = L"Windows.Devices.Usb.UsbBulkInPipe";
./winrt/windows.devices.usb.h:14943:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbBulkOutPipe[] = L"Windows.Devices.Usb.UsbBulkOutPipe";
./winrt/windows.devices.usb.h:14947:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterruptOutPipe[] = L"Windows.Devices.Usb.UsbInterruptOutPipe";
./winrt/windows.devices.usb.h:14951:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_Usb_UsbInterfaceSetting[] = L"Windows.Devices.Usb.UsbInterfaceSetting";
./winrt/windows.devices.wifidirect.h:940:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_WiFiDirect_IWiFiDirectDeviceStatics[] = L"Windows.Devices.WiFiDirect.IWiFiDirectDeviceStatics";
./winrt/windows.devices.wifidirect.h:1110:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Devices_WiFiDirect_IWiFiDirectDevice[] = L"Windows.Devices.WiFiDirect.IWiFiDirectDevice";
./winrt/windows.devices.wifidirect.h:1290:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Devices_WiFiDirect_WiFiDirectDevice[] = L"Windows.Devices.WiFiDirect.WiFiDirectDevice";
./winrt/windows.foundation.diagnostics.h:1395:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ITracingStatusChangedEventArgs[] = L"Windows.Foundation.Diagnostics.ITracingStatusChangedEventArgs";
./winrt/windows.foundation.diagnostics.h:1680:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_IAsyncCausalityTracerStatics[] = L"Windows.Foundation.Diagnostics.IAsyncCausalityTracerStatics";
./winrt/windows.foundation.diagnostics.h:1917:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_IErrorReportingSettings[] = L"Windows.Foundation.Diagnostics.IErrorReportingSettings";
./winrt/windows.foundation.diagnostics.h:2064:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingChannel[] = L"Windows.Foundation.Diagnostics.ILoggingChannel";
./winrt/windows.foundation.diagnostics.h:2291:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingChannelFactory[] = L"Windows.Foundation.Diagnostics.ILoggingChannelFactory";
./winrt/windows.foundation.diagnostics.h:2430:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingActivity[] = L"Windows.Foundation.Diagnostics.ILoggingActivity";
./winrt/windows.foundation.diagnostics.h:2577:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingActivityFactory[] = L"Windows.Foundation.Diagnostics.ILoggingActivityFactory";
./winrt/windows.foundation.diagnostics.h:2734:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingSession[] = L"Windows.Foundation.Diagnostics.ILoggingSession";
./winrt/windows.foundation.diagnostics.h:2917:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILoggingSessionFactory[] = L"Windows.Foundation.Diagnostics.ILoggingSessionFactory";
./winrt/windows.foundation.diagnostics.h:3056:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_ILogFileGeneratedEventArgs[] = L"Windows.Foundation.Diagnostics.ILogFileGeneratedEventArgs";
./winrt/windows.foundation.diagnostics.h:3193:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_IFileLoggingSession[] = L"Windows.Foundation.Diagnostics.IFileLoggingSession";
./winrt/windows.foundation.diagnostics.h:3394:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Diagnostics_IFileLoggingSessionFactory[] = L"Windows.Foundation.Diagnostics.IFileLoggingSessionFactory";
./winrt/windows.foundation.diagnostics.h:3534:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_TracingStatusChangedEventArgs[] = L"Windows.Foundation.Diagnostics.TracingStatusChangedEventArgs";
./winrt/windows.foundation.diagnostics.h:3538:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_AsyncCausalityTracer[] = L"Windows.Foundation.Diagnostics.AsyncCausalityTracer";
./winrt/windows.foundation.diagnostics.h:3542:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_RuntimeBrokerErrorSettings[] = L"Windows.Foundation.Diagnostics.RuntimeBrokerErrorSettings";
./winrt/windows.foundation.diagnostics.h:3546:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_LoggingChannel[] = L"Windows.Foundation.Diagnostics.LoggingChannel";
./winrt/windows.foundation.diagnostics.h:3550:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_LoggingActivity[] = L"Windows.Foundation.Diagnostics.LoggingActivity";
./winrt/windows.foundation.diagnostics.h:3554:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_LoggingSession[] = L"Windows.Foundation.Diagnostics.LoggingSession";
./winrt/windows.foundation.diagnostics.h:3558:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_LogFileGeneratedEventArgs[] = L"Windows.Foundation.Diagnostics.LogFileGeneratedEventArgs";
./winrt/windows.foundation.diagnostics.h:3562:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Diagnostics_FileLoggingSession[] = L"Windows.Foundation.Diagnostics.FileLoggingSession";
./winrt/windows.foundation.h:28010:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IUriRuntimeClass[] = L"Windows.Foundation.IUriRuntimeClass";
./winrt/windows.foundation.h:28309:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IUriRuntimeClassWithAbsoluteCanonicalUri[] = L"Windows.Foundation.IUriRuntimeClassWithAbsoluteCanonicalUri";
./winrt/windows.foundation.h:28454:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IUriEscapeStatics[] = L"Windows.Foundation.IUriEscapeStatics";
./winrt/windows.foundation.h:28603:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IUriRuntimeClassFactory[] = L"Windows.Foundation.IUriRuntimeClassFactory";
./winrt/windows.foundation.h:28754:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IWwwFormUrlDecoderEntry[] = L"Windows.Foundation.IWwwFormUrlDecoderEntry";
./winrt/windows.foundation.h:28899:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IWwwFormUrlDecoderRuntimeClass[] = L"Windows.Foundation.IWwwFormUrlDecoderRuntimeClass";
./winrt/windows.foundation.h:29036:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IWwwFormUrlDecoderRuntimeClassFactory[] = L"Windows.Foundation.IWwwFormUrlDecoderRuntimeClassFactory";
./winrt/windows.foundation.h:29173:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IGetActivationFactory[] = L"Windows.Foundation.IGetActivationFactory";
./winrt/windows.foundation.h:29310:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IClosable[] = L"Windows.Foundation.IClosable";
./winrt/windows.foundation.h:29443:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IPropertyValue[] = L"Windows.Foundation.IPropertyValue";
./winrt/windows.foundation.h:29996:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IPropertyValueStatics[] = L"Windows.Foundation.IPropertyValueStatics";
./winrt/windows.foundation.h:30625:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IStringable[] = L"Windows.Foundation.IStringable";
./winrt/windows.foundation.h:30760:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_Collections_IPropertySet[] = L"Windows.Foundation.Collections.IPropertySet";
./winrt/windows.foundation.h:30887:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Foundation_IAsyncAction[] = L"Windows.Foundation.IAsyncAction";
./winrt/windows.foundation.h:31041:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_WwwFormUrlDecoder[] = L"Windows.Foundation.WwwFormUrlDecoder";
./winrt/windows.foundation.h:31045:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Uri[] = L"Windows.Foundation.Uri";
./winrt/windows.foundation.h:31049:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_WwwFormUrlDecoderEntry[] = L"Windows.Foundation.WwwFormUrlDecoderEntry";
./winrt/windows.foundation.h:31053:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_PropertyValue[] = L"Windows.Foundation.PropertyValue";
./winrt/windows.foundation.h:31057:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Foundation_Collections_PropertySet[] = L"Windows.Foundation.Collections.PropertySet";
./winrt/windows.globalization.collation.h:840:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_Collation_ICharacterGrouping[] = L"Windows.Globalization.Collation.ICharacterGrouping";
./winrt/windows.globalization.collation.h:987:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_Collation_ICharacterGroupings[] = L"Windows.Globalization.Collation.ICharacterGroupings";
./winrt/windows.globalization.collation.h:1127:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_Collation_CharacterGrouping[] = L"Windows.Globalization.Collation.CharacterGrouping";
./winrt/windows.globalization.collation.h:1131:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_Collation_CharacterGroupings[] = L"Windows.Globalization.Collation.CharacterGroupings";
./winrt/windows.globalization.datetimeformatting.h:469:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_DateTimeFormatting_IDateTimeFormatter[] = L"Windows.Globalization.DateTimeFormatting.IDateTimeFormatter";
./winrt/windows.globalization.datetimeformatting.h:1079:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_DateTimeFormatting_IDateTimeFormatterFactory[] = L"Windows.Globalization.DateTimeFormatting.IDateTimeFormatterFactory";
./winrt/windows.globalization.datetimeformatting.h:1344:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_DateTimeFormatting_IDateTimeFormatterStatics[] = L"Windows.Globalization.DateTimeFormatting.IDateTimeFormatterStatics";
./winrt/windows.globalization.datetimeformatting.h:1511:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_DateTimeFormatting_IDateTimeFormatter2[] = L"Windows.Globalization.DateTimeFormatting.IDateTimeFormatter2";
./winrt/windows.globalization.datetimeformatting.h:1653:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_DateTimeFormatting_DateTimeFormatter[] = L"Windows.Globalization.DateTimeFormatting.DateTimeFormatter";
./winrt/windows.globalization.fonts.h:178:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_Fonts_ILanguageFontGroup[] = L"Windows.Globalization.Fonts.ILanguageFontGroup";
./winrt/windows.globalization.fonts.h:472:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_Fonts_ILanguageFontGroupFactory[] = L"Windows.Globalization.Fonts.ILanguageFontGroupFactory";
./winrt/windows.globalization.fonts.h:611:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_Fonts_ILanguageFont[] = L"Windows.Globalization.Fonts.ILanguageFont";
./winrt/windows.globalization.fonts.h:789:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_Fonts_LanguageFont[] = L"Windows.Globalization.Fonts.LanguageFont";
./winrt/windows.globalization.fonts.h:793:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_Fonts_LanguageFontGroup[] = L"Windows.Globalization.Fonts.LanguageFontGroup";
./winrt/windows.globalization.h:2398:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IJapanesePhoneticAnalyzerStatics[] = L"Windows.Globalization.IJapanesePhoneticAnalyzerStatics";
./winrt/windows.globalization.h:2573:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IJapanesePhoneme[] = L"Windows.Globalization.IJapanesePhoneme";
./winrt/windows.globalization.h:2728:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ICalendarIdentifiersStatics[] = L"Windows.Globalization.ICalendarIdentifiersStatics";
./winrt/windows.globalization.h:2943:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IClockIdentifiersStatics[] = L"Windows.Globalization.IClockIdentifiersStatics";
./winrt/windows.globalization.h:3088:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_INumeralSystemIdentifiersStatics[] = L"Windows.Globalization.INumeralSystemIdentifiersStatics";
./winrt/windows.globalization.h:3573:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ICurrencyIdentifiersStatics[] = L"Windows.Globalization.ICurrencyIdentifiersStatics";
./winrt/windows.globalization.h:5268:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IGeographicRegion[] = L"Windows.Globalization.IGeographicRegion";
./winrt/windows.globalization.h:5463:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IGeographicRegionFactory[] = L"Windows.Globalization.IGeographicRegionFactory";
./winrt/windows.globalization.h:5600:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IGeographicRegionStatics[] = L"Windows.Globalization.IGeographicRegionStatics";
./winrt/windows.globalization.h:5737:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ILanguage[] = L"Windows.Globalization.ILanguage";
./winrt/windows.globalization.h:5902:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ILanguageExtensionSubtags[] = L"Windows.Globalization.ILanguageExtensionSubtags";
./winrt/windows.globalization.h:6039:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ILanguageFactory[] = L"Windows.Globalization.ILanguageFactory";
./winrt/windows.globalization.h:6176:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ILanguageStatics[] = L"Windows.Globalization.ILanguageStatics";
./winrt/windows.globalization.h:6323:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ICalendar[] = L"Windows.Globalization.ICalendar";
./winrt/windows.globalization.h:7454:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ICalendarFactory2[] = L"Windows.Globalization.ICalendarFactory2";
./winrt/windows.globalization.h:7597:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ITimeZoneOnCalendar[] = L"Windows.Globalization.ITimeZoneOnCalendar";
./winrt/windows.globalization.h:7764:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_ICalendarFactory[] = L"Windows.Globalization.ICalendarFactory";
./winrt/windows.globalization.h:7917:extern const __declspec(selectany) _Null_terminated_ WCHAR InterfaceName_Windows_Globalization_IApplicationLanguagesStatics[] = L"Windows.Globalization.IApplicationLanguagesStatics";
./winrt/windows.globalization.h:8083:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_JapanesePhoneme[] = L"Windows.Globalization.JapanesePhoneme";
./winrt/windows.globalization.h:8087:extern const __declspec(selectany) _Null_terminated_ WCHAR RuntimeClass_Windows_Globalization_JapanesePhoneticAnalyzer[] = L"Windows.Globalization.JapanesePhoneticAnalyzer";