summaryrefslogtreecommitdiffstats
path: root/src/VBox/Runtime/r3/win/VBoxRT-msvcr100-win32.def
blob: 6317e6580e793b113bc7b286a195ff12f3627b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
  ;
  _except_handler4
  ;_heap_init
  ;__crtExitProcess
  ;_NMSG_WRITE
  ;_FF_MSGBANNER
  ;_cinit
  ;_setenvp
  ;__crtGetEnvironmentStringsA
  ;_ioinit
  ;_mtinit

  _initterm=my_initterm
  __dllonexit=my_dllonexit
  __getmainargs=my_getmainargs
  __setusermatherr=my_setusermatherr

  _onexit DATA ; the one is crazy. atonexit.obj in msvcrt.lib which calls the __imp___onexit directly.

  ; MSVCR100.DLL exports
  ??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z
  ??0SchedulerPolicy@Concurrency@@QAA@IZZ
  ??0SchedulerPolicy@Concurrency@@QAE@ABV01@@Z
  ??0SchedulerPolicy@Concurrency@@QAE@XZ
  ??0_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ
  ??0_NonReentrantPPLLock@details@Concurrency@@QAE@XZ
  ??0_ReaderWriterLock@details@Concurrency@@QAE@XZ
  ??0_ReentrantBlockingLock@details@Concurrency@@QAE@XZ
  ??0_ReentrantLock@details@Concurrency@@QAE@XZ
  ??0_ReentrantPPLLock@details@Concurrency@@QAE@XZ
  ??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z
  ??0_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z
  ??0_SpinLock@details@Concurrency@@QAE@ACJ@Z
  ??0_TaskCollection@details@Concurrency@@QAE@XZ
  ??0_Timer@details@Concurrency@@IAE@I_N@Z
  ??0__non_rtti_object@std@@QAE@ABV01@@Z
  ??0__non_rtti_object@std@@QAE@PBD@Z
  ;fixme-not-in-libcmt.lib; ??0bad_cast@std@@AAE@PBQBD@Z
  ??0bad_cast@std@@QAE@ABV01@@Z
  ??0bad_cast@std@@QAE@PBD@Z
  ??0bad_target@Concurrency@@QAE@PBD@Z
  ??0bad_target@Concurrency@@QAE@XZ
  ??0bad_typeid@std@@QAE@ABV01@@Z
  ??0bad_typeid@std@@QAE@PBD@Z
  ??0context_self_unblock@Concurrency@@QAE@PBD@Z
  ??0context_self_unblock@Concurrency@@QAE@XZ
  ??0context_unblock_unbalanced@Concurrency@@QAE@PBD@Z
  ??0context_unblock_unbalanced@Concurrency@@QAE@XZ
  ??0critical_section@Concurrency@@QAE@XZ
  ??0default_scheduler_exists@Concurrency@@QAE@PBD@Z
  ??0default_scheduler_exists@Concurrency@@QAE@XZ
  ??0event@Concurrency@@QAE@XZ
  ??0exception@std@@QAE@ABQBD@Z
  ??0exception@std@@QAE@ABQBDH@Z
  ??0exception@std@@QAE@ABV01@@Z
  ??0exception@std@@QAE@XZ
  ??0improper_lock@Concurrency@@QAE@PBD@Z
  ??0improper_lock@Concurrency@@QAE@XZ
  ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z
  ??0improper_scheduler_attach@Concurrency@@QAE@XZ
  ??0improper_scheduler_detach@Concurrency@@QAE@PBD@Z
  ??0improper_scheduler_detach@Concurrency@@QAE@XZ
  ??0improper_scheduler_reference@Concurrency@@QAE@PBD@Z
  ??0improper_scheduler_reference@Concurrency@@QAE@XZ
  ??0invalid_link_target@Concurrency@@QAE@PBD@Z
  ??0invalid_link_target@Concurrency@@QAE@XZ
  ??0invalid_multiple_scheduling@Concurrency@@QAE@PBD@Z
  ??0invalid_multiple_scheduling@Concurrency@@QAE@XZ
  ??0invalid_operation@Concurrency@@QAE@PBD@Z
  ??0invalid_operation@Concurrency@@QAE@XZ
  ??0invalid_oversubscribe_operation@Concurrency@@QAE@PBD@Z
  ??0invalid_oversubscribe_operation@Concurrency@@QAE@XZ
  ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z
  ??0invalid_scheduler_policy_key@Concurrency@@QAE@XZ
  ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@PBD@Z
  ??0invalid_scheduler_policy_thread_specification@Concurrency@@QAE@XZ
  ??0invalid_scheduler_policy_value@Concurrency@@QAE@PBD@Z
  ??0invalid_scheduler_policy_value@Concurrency@@QAE@XZ
  ??0message_not_found@Concurrency@@QAE@PBD@Z
  ??0message_not_found@Concurrency@@QAE@XZ
  ??0missing_wait@Concurrency@@QAE@PBD@Z
  ??0missing_wait@Concurrency@@QAE@XZ
  ??0nested_scheduler_missing_detach@Concurrency@@QAE@PBD@Z
  ??0nested_scheduler_missing_detach@Concurrency@@QAE@XZ
  ??0operation_timed_out@Concurrency@@QAE@PBD@Z
  ??0operation_timed_out@Concurrency@@QAE@XZ
  ??0reader_writer_lock@Concurrency@@QAE@XZ
  ??0scheduler_not_attached@Concurrency@@QAE@PBD@Z
  ??0scheduler_not_attached@Concurrency@@QAE@XZ
  ??0scheduler_resource_allocation_error@Concurrency@@QAE@J@Z
  ??0scheduler_resource_allocation_error@Concurrency@@QAE@PBDJ@Z
  ??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z
  ??0scoped_lock@reader_writer_lock@Concurrency@@QAE@AAV12@@Z
  ??0scoped_lock_read@reader_writer_lock@Concurrency@@QAE@AAV12@@Z
  ??0task_canceled@details@Concurrency@@QAE@PBD@Z
  ??0task_canceled@details@Concurrency@@QAE@XZ
  ??0unsupported_os@Concurrency@@QAE@PBD@Z
  ??0unsupported_os@Concurrency@@QAE@XZ
  ??1SchedulerPolicy@Concurrency@@QAE@XZ
  ??1_NonReentrantBlockingLock@details@Concurrency@@QAE@XZ
  ??1_ReentrantBlockingLock@details@Concurrency@@QAE@XZ
  ??1_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@XZ
  ??1_Scoped_lock@_ReentrantPPLLock@details@Concurrency@@QAE@XZ
  ??1_SpinLock@details@Concurrency@@QAE@XZ
  ??1_TaskCollection@details@Concurrency@@QAE@XZ
  ??1_Timer@details@Concurrency@@IAE@XZ
  ??1__non_rtti_object@std@@UAE@XZ
  ??1bad_cast@std@@UAE@XZ
  ??1bad_typeid@std@@UAE@XZ
  ??1critical_section@Concurrency@@QAE@XZ
  ??1event@Concurrency@@QAE@XZ
  ??1exception@std@@UAE@XZ
  ??1reader_writer_lock@Concurrency@@QAE@XZ
  ??1scoped_lock@critical_section@Concurrency@@QAE@XZ
  ??1scoped_lock@reader_writer_lock@Concurrency@@QAE@XZ
  ??1scoped_lock_read@reader_writer_lock@Concurrency@@QAE@XZ
  ??1type_info@@UAE@XZ
  ??2@YAPAXI@Z
  ??2@YAPAXIHPBDH@Z
  ??3@YAXPAX@Z
  ;fixme-not-in-libcmt.lib; ??4?$_SpinWait@$00@details@Concurrency@@QAEAAV012@ABV012@@Z
  ;fixme-not-in-libcmt.lib; ??4?$_SpinWait@$0A@@details@Concurrency@@QAEAAV012@ABV012@@Z
  ??4SchedulerPolicy@Concurrency@@QAEAAV01@ABV01@@Z
  ??4__non_rtti_object@std@@QAEAAV01@ABV01@@Z
  ??4bad_cast@std@@QAEAAV01@ABV01@@Z
  ??4bad_typeid@std@@QAEAAV01@ABV01@@Z
  ??4exception@std@@QAEAAV01@ABV01@@Z
  ??8type_info@@QBE_NABV0@@Z
  ??9type_info@@QBE_NABV0@@Z
  ??_7__non_rtti_object@std@@6B@
  ??_7bad_cast@std@@6B@
  ??_7bad_typeid@std@@6B@
  ;fixme-not-in-libcmt.lib; ??_7exception@@6B@
  ??_7exception@std@@6B@
  ;fixme-not-in-libcmt.lib; ??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ
  ;fixme-not-in-libcmt.lib; ??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ
  ??_Fbad_cast@std@@QAEXXZ
  ??_Fbad_typeid@std@@QAEXXZ
  ??_U@YAPAXI@Z
  ??_U@YAPAXIHPBDH@Z
  ??_V@YAXPAX@Z
  ?Alloc@Concurrency@@YAPAXI@Z
  ?Block@Context@Concurrency@@SAXXZ
  ?Create@CurrentScheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z
  ?Create@Scheduler@Concurrency@@SAPAV12@ABVSchedulerPolicy@2@@Z
  ?CreateResourceManager@Concurrency@@YAPAUIResourceManager@1@XZ
  ?CreateScheduleGroup@CurrentScheduler@Concurrency@@SAPAVScheduleGroup@2@XZ
  ?CurrentContext@Context@Concurrency@@SAPAV12@XZ
  ?Detach@CurrentScheduler@Concurrency@@SAXXZ
  ?DisableTracing@Concurrency@@YAJXZ
  ?EnableTracing@Concurrency@@YAJXZ
  ?Free@Concurrency@@YAXPAX@Z
  ?Get@CurrentScheduler@Concurrency@@SAPAVScheduler@2@XZ
  ?GetExecutionContextId@Concurrency@@YAIXZ
  ?GetNumberOfVirtualProcessors@CurrentScheduler@Concurrency@@SAIXZ
  ?GetOSVersion@Concurrency@@YA?AW4OSVersion@IResourceManager@1@XZ
  ?GetPolicy@CurrentScheduler@Concurrency@@SA?AVSchedulerPolicy@2@XZ
  ?GetPolicyValue@SchedulerPolicy@Concurrency@@QBEIW4PolicyElementKey@2@@Z
  ?GetProcessorCount@Concurrency@@YAIXZ
  ?GetProcessorNodeCount@Concurrency@@YAIXZ
  ?GetSchedulerId@Concurrency@@YAIXZ
  ?GetSharedTimerQueue@details@Concurrency@@YAPAXXZ
  ?Id@Context@Concurrency@@SAIXZ
  ?Id@CurrentScheduler@Concurrency@@SAIXZ
  ?IsCurrentTaskCollectionCanceling@Context@Concurrency@@SA_NXZ
  ?Log2@details@Concurrency@@YAKI@Z
  ?Oversubscribe@Context@Concurrency@@SAX_N@Z
  ?RegisterShutdownEvent@CurrentScheduler@Concurrency@@SAXPAX@Z
  ?ResetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXXZ
  ?ScheduleGroupId@Context@Concurrency@@SAIXZ
  ?ScheduleTask@CurrentScheduler@Concurrency@@SAXP6AXPAX@Z0@Z
  ?SetConcurrencyLimits@SchedulerPolicy@Concurrency@@QAEXII@Z
  ?SetDefaultSchedulerPolicy@Scheduler@Concurrency@@SAXABVSchedulerPolicy@2@@Z
  ?SetPolicyValue@SchedulerPolicy@Concurrency@@QAEIW4PolicyElementKey@2@I@Z
  ?VirtualProcessorId@Context@Concurrency@@SAIXZ
  ?Yield@Context@Concurrency@@SAXXZ
  ?_Abort@_StructuredTaskCollection@details@Concurrency@@AAEXXZ
  ?_Acquire@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ
  ?_Acquire@_NonReentrantPPLLock@details@Concurrency@@QAEXPAX@Z
  ?_Acquire@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ
  ?_Acquire@_ReentrantLock@details@Concurrency@@QAEXXZ
  ?_Acquire@_ReentrantPPLLock@details@Concurrency@@QAEXPAX@Z
  ?_AcquireRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ
  ?_AcquireWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ
  ?_Cancel@_StructuredTaskCollection@details@Concurrency@@QAEXXZ
  ?_Cancel@_TaskCollection@details@Concurrency@@QAEXXZ
  ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ
  ?_ConcRT_Assert@details@Concurrency@@YAXPBD0H@Z
  ?_ConcRT_CoreAssert@details@Concurrency@@YAXPBD0H@Z
  ?_ConcRT_DumpMessage@details@Concurrency@@YAXPB_WZZ
  ?_ConcRT_Trace@details@Concurrency@@YAXHPB_WZZ
  ?_Copy_str@exception@std@@AAEXPBD@Z
  ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ
  ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ
  ?_IsCanceling@_StructuredTaskCollection@details@Concurrency@@QAE_NXZ
  ?_IsCanceling@_TaskCollection@details@Concurrency@@QAE_NXZ
  ?_Name_base@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z
  ?_Name_base_internal@type_info@@CAPBDPBV1@PAU__type_info_node@@@Z
  ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ
  ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ
  ?_Release@_NonReentrantBlockingLock@details@Concurrency@@QAEXXZ
  ?_Release@_NonReentrantPPLLock@details@Concurrency@@QAEXXZ
  ?_Release@_ReentrantBlockingLock@details@Concurrency@@QAEXXZ
  ?_Release@_ReentrantLock@details@Concurrency@@QAEXXZ
  ?_Release@_ReentrantPPLLock@details@Concurrency@@QAEXXZ
  ?_ReleaseRead@_ReaderWriterLock@details@Concurrency@@QAEXXZ
  ?_ReleaseWrite@_ReaderWriterLock@details@Concurrency@@QAEXXZ
  ?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ
  ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ
  ?_RunAndWait@_StructuredTaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z
  ?_RunAndWait@_TaskCollection@details@Concurrency@@QAG?AW4_TaskCollectionStatus@23@PAV_UnrealizedChore@23@@Z
  ?_Schedule@_StructuredTaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z
  ?_Schedule@_TaskCollection@details@Concurrency@@QAEXPAV_UnrealizedChore@23@@Z
  ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z
  ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z
  ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ
  ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ
  ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ
  ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ
  ?_SpinYield@Context@Concurrency@@SAXXZ
  ?_Start@_Timer@details@Concurrency@@IAEXXZ
  ?_Stop@_Timer@details@Concurrency@@IAEXXZ
  ?_Tidy@exception@std@@AAEXXZ
  ?_Trace_ppl_function@Concurrency@@YAXABU_GUID@@EW4ConcRT_EventType@1@@Z
  ?_TryAcquire@_NonReentrantBlockingLock@details@Concurrency@@QAE_NXZ
  ?_TryAcquire@_ReentrantBlockingLock@details@Concurrency@@QAE_NXZ
  ?_TryAcquire@_ReentrantLock@details@Concurrency@@QAE_NXZ
  ?_TryAcquireWrite@_ReaderWriterLock@details@Concurrency@@QAE_NXZ
  ?_Type_info_dtor@type_info@@CAXPAV1@@Z
  ?_Type_info_dtor_internal@type_info@@CAXPAV1@@Z
  ?_UnderlyingYield@details@Concurrency@@YAXXZ
  ?_ValidateExecute@@YAHP6GHXZ@Z
  ?_ValidateRead@@YAHPBXI@Z
  ?_ValidateWrite@@YAHPAXI@Z
  ?_Value@_SpinCount@details@Concurrency@@SAIXZ
  ?__ExceptionPtrAssign@@YAXPAXPBX@Z
  ?__ExceptionPtrCompare@@YA_NPBX0@Z
  ?__ExceptionPtrCopy@@YAXPAXPBX@Z
  ?__ExceptionPtrCopyException@@YAXPAXPBX1@Z
  ?__ExceptionPtrCreate@@YAXPAX@Z
  ?__ExceptionPtrCurrentException@@YAXPAX@Z
  ?__ExceptionPtrDestroy@@YAXPAX@Z
  ?__ExceptionPtrRethrow@@YAXPBX@Z
  __uncaught_exception
  ?_inconsistency@@YAXXZ
  ?_invalid_parameter@@YAXPBG00II@Z
  ?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z
  ?_name_internal_method@type_info@@QBEPBDPAU__type_info_node@@@Z
  ?_open@@YAHPBDHH@Z
  ?_query_new_handler@@YAP6AHI@ZXZ
  ?_query_new_mode@@YAHXZ
  ?_set_new_handler@@YAP6AHI@ZH@Z
  ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z
  ?_set_new_mode@@YAHH@Z
  ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZH@Z
  ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z
  ?_sopen@@YAHPBDHHH@Z
  ?_type_info_dtor_internal_method@type_info@@QAEXXZ
  ?_wopen@@YAHPB_WHH@Z
  ?_wsopen@@YAHPB_WHHH@Z
  ?before@type_info@@QBEHABV1@@Z
  ?get_error_code@scheduler_resource_allocation_error@Concurrency@@QBEJXZ
  ?lock@critical_section@Concurrency@@QAEXXZ
  ?lock@reader_writer_lock@Concurrency@@QAEXXZ
  ?lock_read@reader_writer_lock@Concurrency@@QAEXXZ
  ?name@type_info@@QBEPBDPAU__type_info_node@@@Z
  ?native_handle@critical_section@Concurrency@@QAEAAV12@XZ
  ?raw_name@type_info@@QBEPBDXZ
  ?reset@event@Concurrency@@QAEXXZ
  ?set@event@Concurrency@@QAEXXZ
  ?set_new_handler@@YAP6AXXZP6AXXZ@Z
  ?set_terminate@@YAP6AXXZH@Z
  ?set_terminate@@YAP6AXXZP6AXXZ@Z
  ?set_unexpected@@YAP6AXXZH@Z
  ?set_unexpected@@YAP6AXXZP6AXXZ@Z
  ?swprintf@@YAHPAGIPBGZZ
  ?swprintf@@YAHPA_WIPB_WZZ
  ?terminate@@YAXXZ ;fixme-causes-trouble-with-version-in-libcmt.lib;
  ?try_lock@critical_section@Concurrency@@QAE_NXZ
  ?try_lock@reader_writer_lock@Concurrency@@QAE_NXZ
  ?try_lock_read@reader_writer_lock@Concurrency@@QAE_NXZ
  ?unexpected@@YAXXZ
  ?unlock@critical_section@Concurrency@@QAEXXZ
  ?unlock@reader_writer_lock@Concurrency@@QAEXXZ
  ?vswprintf@@YAHPA_WIPB_WPAD@Z
  ?wait@Concurrency@@YAXI@Z
  ?wait@event@Concurrency@@QAEII@Z
  ?wait_for_multiple@event@Concurrency@@SAIPAPAV12@I_NI@Z
  ?what@exception@std@@UBEPBDXZ
  $I10_OUTPUT
  _CIacos
  _CIasin
  _CIatan
  _CIatan2
  _CIcos
  _CIcosh
  _CIexp
  _CIfmod
  _CIlog
  _CIlog10
  _CIpow
  _CIsin
  _CIsinh
  _CIsqrt
  _CItan
  _CItanh
  _CRT_RTC_INIT
  _CRT_RTC_INITW
  _CreateFrameInfo
  _CxxThrowException
  _EH_prolog
  _FindAndUnlinkFrame
  _Getdays
  _Getmonths
  _Gettnames
  _HUGE
  _IsExceptionObjectToBeDestroyed
  _NLG_Dispatch2
  _NLG_Return
  _NLG_Return2
  _Strftime
  _XcptFilter
  __AdjustPointer
  __BuildCatchObject
  __BuildCatchObjectHelper
  __CppXcptFilter
  __CxxCallUnwindDelDtor
  __CxxCallUnwindDtor
  __CxxCallUnwindStdDelDtor
  __CxxCallUnwindVecDtor
  __CxxDetectRethrow
  __CxxExceptionFilter
  __CxxFrameHandler
  __CxxFrameHandler2
  __CxxFrameHandler3
  __CxxLongjmpUnwind
  __CxxQueryExceptionSize
  __CxxRegisterExceptionObject
  __CxxUnregisterExceptionObject
  __DestructExceptionObject
  __FrameUnwindFilter
  __RTCastToVoid
  __RTDynamicCast
  __RTtypeid
  __STRINGTOLD
  __STRINGTOLD_L
  __TypeMatch
  ___lc_codepage_func
  ___lc_collate_cp_func
  ___lc_handle_func
  ___mb_cur_max_func
  ___mb_cur_max_l_func
  ___setlc_active_func
  ___unguarded_readlc_active_add_func
  __argc
  __argv
  __badioinfo
  __clean_type_info_names_internal
  __control87_2
  __create_locale
  __crtCompareStringA
  __crtCompareStringW
  __crtLCMapStringA
  __crtLCMapStringW
  __daylight
  __doserrno
  __dstbias
  ___fls_getvalue@4
  ___fls_setvalue@8
  __fpecode
  __free_locale
  __get_current_locale
  __get_flsindex
 ;fixme?; __get_tlsindex
  __initenv
  __iob_func
  __isascii
  __iscsym
  __iscsymf
  __iswcsym
  __iswcsymf
  __lconv
  __lconv_init
  __libm_sse2_acos
  __libm_sse2_acosf
  __libm_sse2_asin
  __libm_sse2_asinf
  __libm_sse2_atan
  __libm_sse2_atan2
  __libm_sse2_atanf
  __libm_sse2_cos
  __libm_sse2_cosf
  __libm_sse2_exp
  __libm_sse2_expf
  __libm_sse2_log
  __libm_sse2_log10
  __libm_sse2_log10f
  __libm_sse2_logf
  __libm_sse2_pow
  __libm_sse2_powf
  __libm_sse2_sin
  __libm_sse2_sinf
  __libm_sse2_tan
  __libm_sse2_tanf
  __mb_cur_max
 ;fixme?; __p___argc
 ;fixme?; __p___argv
 ;fixme?; __p___initenv
 ;fixme?; __p___mb_cur_max
 ;fixme?; __p___wargv
 ;fixme?; __p___winitenv
 ;fixme?; __p__acmdln
 ;fixme?; __p__commode
 ;fixme?; __p__daylight
 ;fixme?; __p__dstbias
 ;fixme?; __p__environ
 ;fixme?; __p__fmode
 ;fixme?; __p__iob
 ;fixme?; __p__mbcasemap
 ;fixme?; __p__mbctype
 ;fixme?; __p__pctype
 ;fixme?; __p__pgmptr
 ;fixme?; __p__pwctype
 ;fixme?; __p__timezone
 ;fixme?; __p__tzname
 ;fixme?; __p__wcmdln
 ;fixme?; __p__wenviron
 ;fixme?; __p__wpgmptr

  __pctype_func
  __pioinfo
  __pwctype_func
  __pxcptinfoptrs
  __report_gsfailure
  __set_app_type
  __set_flsgetvalue
  __setlc_active
 ;fixme?; __setusermatherr
  __strncnt
  __swprintf_l
  __sys_errlist
  __sys_nerr
  __threadhandle
  __threadid
  __timezone
  __toascii
  __tzname
  __unDName
  __unDNameEx
  __unDNameHelper
  __unguarded_readlc_active
  __vswprintf_l
  __wargv
  __wcserror
  __wcserror_s
  __wcsncnt
 ;fixme?; __wgetmainargs
  __winitenv
  _abnormal_termination
  _abs64
  _access
  _access_s
  _acmdln
  _aligned_free
  _aligned_malloc
  _aligned_msize
  _aligned_offset_malloc
  _aligned_offset_realloc
  _aligned_offset_recalloc
  _aligned_realloc
  _aligned_recalloc
  _amsg_exit
  _assert
  _atodbl
  _atodbl_l
  _atof_l
  _atoflt
  _atoflt_l
  _atoi64
  _atoi64_l
  _atoi_l
  _atol_l
  _atoldbl
  _atoldbl_l
  _beep
  _beginthread
  _beginthreadex
  _byteswap_uint64
  _byteswap_ulong
  _byteswap_ushort
  _c_exit
  _cabs
  _callnewh
  _calloc_crt
  _cexit
  _cgets
  _cgets_s
  _cgetws
  _cgetws_s
  _chdir
  _chdrive
  _chgsign
  _chkesp
  _chmod
  _chsize
  _chsize_s
  _clearfp
  _close
  _commit
  ;fixme?; _commode
  _configthreadlocale
  _control87
  _controlfp
  _controlfp_s
  _copysign
  _cprintf
  _cprintf_l
  _cprintf_p
  _cprintf_p_l
  _cprintf_s
  _cprintf_s_l
  _cputs
  _cputws
  _creat
  _create_locale
  _crt_debugger_hook
  _cscanf
  _cscanf_l
  _cscanf_s
  _cscanf_s_l
  _ctime32
  _ctime32_s
  _ctime64
  _ctime64_s
  _cwait
  _cwprintf
  _cwprintf_l
  _cwprintf_p
  _cwprintf_p_l
  _cwprintf_s
  _cwprintf_s_l
  _cwscanf
  _cwscanf_l
  _cwscanf_s
  _cwscanf_s_l
  _daylight
  _difftime32
  _difftime64
  _dosmaperr
  _dstbias
  _dup
  _dup2
  _dupenv_s
  _ecvt
  _ecvt_s
  _encoded_null
  _endthread
  _endthreadex
  _environ
  _eof
  _errno
  _except_handler2
  _except_handler3
 ;fixme?; _except_handler4_common
  _execl
  _execle
  _execlp
  _execlpe
  _execv
  _execve
  _execvp
  _execvpe
  _exit
  _expand
  _fclose_nolock
  _fcloseall
  _fcvt
  _fcvt_s
  _fdopen
  _fflush_nolock
  _fgetchar
  _fgetwc_nolock
  _fgetwchar
  _filbuf
  _filelength
  _filelengthi64
  _fileno
  _findclose
  _findfirst32
  _findfirst32i64
  _findfirst64
  _findfirst64i32
  _findnext32
  _findnext32i64
  _findnext64
  _findnext64i32
  _finite
  _flsbuf
  _flushall
  ;fixme?; _fmode
  _fpclass
  _fpieee_flt
  _fpreset
  _fprintf_l
  _fprintf_p
  _fprintf_p_l
  _fprintf_s_l
  _fputchar
  _fputwc_nolock
  _fputwchar
  _fread_nolock
  _fread_nolock_s
  _free_locale
  _freea
  _freea_s
  _freefls
  _fscanf_l
  _fscanf_s_l
  _fseek_nolock
  _fseeki64
  _fseeki64_nolock
  _fsopen
  _fstat32
  _fstat32i64
  _fstat64
  _fstat64i32
  _ftell_nolock
  _ftelli64
  _ftelli64_nolock
  _ftime32
  _ftime32_s
  _ftime64
  _ftime64_s
  _ftol
  _fullpath
  _futime32
  _futime64
  _fwprintf_l
  _fwprintf_p
  _fwprintf_p_l
  _fwprintf_s_l
  _fwrite_nolock
  _fwscanf_l
  _fwscanf_s_l
  _gcvt
  _gcvt_s
  _get_current_locale
  _get_daylight
  _get_doserrno
  _get_dstbias
  _get_errno
  _get_fmode
  _get_heap_handle
  _get_invalid_parameter_handler
  _get_osfhandle
  _get_output_format
  _get_pgmptr
  _get_printf_count_output
  _get_purecall_handler
  _get_terminate
  _get_timezone
  _get_tzname
  _get_unexpected
  _get_wpgmptr
  _getc_nolock
  _getch
  _getch_nolock
  _getche
  _getche_nolock
  _getcwd
  _getdcwd
  _getdcwd_nolock
  _getdiskfree
  _getdllprocaddr
  _getdrive
  _getdrives
  _getmaxstdio
  _getmbcp
  _getpid
  _getptd
  _getsystime
  _getw
  _getwch
  _getwch_nolock
  _getwche
  _getwche_nolock
  _getws
  _getws_s
  _global_unwind2
  _gmtime32
  _gmtime32_s
  _gmtime64
  _gmtime64_s
  _heapadd
  _heapchk
  _heapmin
  _heapset
  _heapused
  _heapwalk
  _hypot
  _hypotf
  _i64toa
  _i64toa_s
  _i64tow
  _i64tow_s
  _initptd
 ;fixme?; _initterm
  _initterm_e
  _inp
  _inpd
  _inpw
  _invalid_parameter
  _invalid_parameter_noinfo
  _invalid_parameter_noinfo_noreturn
  _invoke_watson
  _iob
  _isalnum_l
  _isalpha_l
  _isatty
  _iscntrl_l
  _isctype
  _isctype_l
  _isdigit_l
  _isgraph_l
  _isleadbyte_l
  _islower_l
  _ismbbalnum
  _ismbbalnum_l
  _ismbbalpha
  _ismbbalpha_l
  _ismbbgraph
  _ismbbgraph_l
  _ismbbkalnum
  _ismbbkalnum_l
  _ismbbkana
  _ismbbkana_l
  _ismbbkprint
  _ismbbkprint_l
  _ismbbkpunct
  _ismbbkpunct_l
  _ismbblead
  _ismbblead_l
  _ismbbprint
  _ismbbprint_l
  _ismbbpunct
  _ismbbpunct_l
  _ismbbtrail
  _ismbbtrail_l
  _ismbcalnum
  _ismbcalnum_l
  _ismbcalpha
  _ismbcalpha_l
  _ismbcdigit
  _ismbcdigit_l
  _ismbcgraph
  _ismbcgraph_l
  _ismbchira
  _ismbchira_l
  _ismbckata
  _ismbckata_l
  _ismbcl0
  _ismbcl0_l
  _ismbcl1
  _ismbcl1_l
  _ismbcl2
  _ismbcl2_l
  _ismbclegal
  _ismbclegal_l
  _ismbclower
  _ismbclower_l
  _ismbcprint
  _ismbcprint_l
  _ismbcpunct
  _ismbcpunct_l
  _ismbcspace
  _ismbcspace_l
  _ismbcsymbol
  _ismbcsymbol_l
  _ismbcupper
  _ismbcupper_l
  _ismbslead
  _ismbslead_l
  _ismbstrail
  _ismbstrail_l
  _isnan
  _isprint_l
  _ispunct_l
  _isspace_l
  _isupper_l
  _iswalnum_l
  _iswalpha_l
  _iswcntrl_l
  _iswcsym_l
  _iswcsymf_l
  _iswctype_l
  _iswdigit_l
  _iswgraph_l
  _iswlower_l
  _iswprint_l
  _iswpunct_l
  _iswspace_l
  _iswupper_l
  _iswxdigit_l
  _isxdigit_l
  _itoa
  _itoa_s
  _itow
  _itow_s
  _j0
  _j1
  _jn
  _kbhit
  _lfind
  _lfind_s
  _loaddll
  _local_unwind2
  _local_unwind4
  _localtime32
  _localtime32_s
  _localtime64
  _localtime64_s
  _lock
  _lock_file
  _locking
  _logb
  _longjmpex
  _lrotl
  _lrotr
  _lsearch
  _lsearch_s
  _lseek
  _lseeki64
  _ltoa
  _ltoa_s
  _ltow
  _ltow_s
  _makepath
  _makepath_s
  _malloc_crt
  _mbbtombc
  _mbbtombc_l
  _mbbtype
  _mbbtype_l
  _mbcasemap
  _mbccpy
  _mbccpy_l
  _mbccpy_s
  _mbccpy_s_l
  _mbcjistojms
  _mbcjistojms_l
  _mbcjmstojis
  _mbcjmstojis_l
  _mbclen
  _mbclen_l
  _mbctohira
  _mbctohira_l
  _mbctokata
  _mbctokata_l
  _mbctolower
  _mbctolower_l
  _mbctombb
  _mbctombb_l
  _mbctoupper
  _mbctoupper_l
  _mbctype
  _mblen_l
  _mbsbtype
  _mbsbtype_l
  _mbscat_s
  _mbscat_s_l
  _mbschr
  _mbschr_l
  _mbscmp
  _mbscmp_l
  _mbscoll
  _mbscoll_l
  _mbscpy_s
  _mbscpy_s_l
  _mbscspn
  _mbscspn_l
  _mbsdec
  _mbsdec_l
  _mbsicmp
  _mbsicmp_l
  _mbsicoll
  _mbsicoll_l
  _mbsinc
  _mbsinc_l
  _mbslen
  _mbslen_l
  _mbslwr
  _mbslwr_l
  _mbslwr_s
  _mbslwr_s_l
  _mbsnbcat
  _mbsnbcat_l
  _mbsnbcat_s
  _mbsnbcat_s_l
  _mbsnbcmp
  _mbsnbcmp_l
  _mbsnbcnt
  _mbsnbcnt_l
  _mbsnbcoll
  _mbsnbcoll_l
  _mbsnbcpy
  _mbsnbcpy_l
  _mbsnbcpy_s
  _mbsnbcpy_s_l
  _mbsnbicmp
  _mbsnbicmp_l
  _mbsnbicoll
  _mbsnbicoll_l
  _mbsnbset
  _mbsnbset_l
  _mbsnbset_s
  _mbsnbset_s_l
  _mbsncat
  _mbsncat_l
  _mbsncat_s
  _mbsncat_s_l
  _mbsnccnt
  _mbsnccnt_l
  _mbsncmp
  _mbsncmp_l
  _mbsncoll
  _mbsncoll_l
  _mbsncpy
  _mbsncpy_l
  _mbsncpy_s
  _mbsncpy_s_l
  _mbsnextc
  _mbsnextc_l
  _mbsnicmp
  _mbsnicmp_l
  _mbsnicoll
  _mbsnicoll_l
  _mbsninc
  _mbsninc_l
  _mbsnlen
  _mbsnlen_l
  _mbsnset
  _mbsnset_l
  _mbsnset_s
  _mbsnset_s_l
  _mbspbrk
  _mbspbrk_l
  _mbsrchr
  _mbsrchr_l
  _mbsrev
  _mbsrev_l
  _mbsset
  _mbsset_l
  _mbsset_s
  _mbsset_s_l
  _mbsspn
  _mbsspn_l
  _mbsspnp
  _mbsspnp_l
  _mbsstr
  _mbsstr_l
  _mbstok
  _mbstok_l
  _mbstok_s
  _mbstok_s_l
  _mbstowcs_l
  _mbstowcs_s_l
  _mbstrlen
  _mbstrlen_l
  _mbstrnlen
  _mbstrnlen_l
  _mbsupr
  _mbsupr_l
  _mbsupr_s
  _mbsupr_s_l
  _mbtowc_l
  _memccpy
  _memicmp
  _memicmp_l
  _mkdir
  _mkgmtime32
  _mkgmtime64
  _mktemp
  _mktemp_s
  _mktime32
  _mktime64
  _msize
  _nextafter
  _open
  _open_osfhandle
  _outp
  _outpd
  _outpw
  _pclose
  _pctype
  _pgmptr
  _pipe
  _popen
  _printf_l
  _printf_p
  _printf_p_l
  _printf_s_l
  _purecall
  _putch
  _putch_nolock
  _putenv
  _putenv_s
  _putw
  _putwch
  _putwch_nolock
  _putws
  _pwctype
  _read
  _realloc_crt
  _recalloc
  _recalloc_crt
  _resetstkoflw
  _rmdir
  _rmtmp
  _rotl
  _rotl64
  _rotr
  _rotr64
  _scalb
  _scanf_l
  _scanf_s_l
  _scprintf
  _scprintf_l
  _scprintf_p
  _scprintf_p_l
  _scwprintf
  _scwprintf_l
  _scwprintf_p
  _scwprintf_p_l
  _searchenv
  _searchenv_s
  _seh_longjmp_unwind4
  _seh_longjmp_unwind
  _set_SSE2_enable
  _set_abort_behavior
  _set_controlfp
  _set_doserrno
  _set_errno
  _set_error_mode
  _set_fmode
  _set_invalid_parameter_handler
  _set_malloc_crt_max_wait
  _set_output_format
  _set_printf_count_output
  _set_purecall_handler
  _seterrormode
  _setjmp
  _setjmp3
  _setmaxstdio
  _setmbcp
  _setmode
  _setsystime
  _sleep
  _snprintf
  _snprintf_c
  _snprintf_c_l
  _snprintf_l
  _snprintf_s
  _snprintf_s_l
  _snscanf
  _snscanf_l
  _snscanf_s
  _snscanf_s_l
  _snwprintf
  _snwprintf_l
  _snwprintf_s
  _snwprintf_s_l
  _snwscanf
  _snwscanf_l
  _snwscanf_s
  _snwscanf_s_l
  _sopen
  _sopen_s
  _spawnl
  _spawnle
  _spawnlp
  _spawnlpe
  _spawnv
  _spawnve
  _spawnvp
  _spawnvpe
  _splitpath
  _splitpath_s
  _sprintf_l
  _sprintf_p
  _sprintf_p_l
  _sprintf_s_l
  _sscanf_l
  _sscanf_s_l
  _stat32
  _stat32i64
  _stat64
  _stat64i32
  _statusfp
  _statusfp2
  _strcoll_l
  _strdate
  _strdate_s
  _strdup
  _strerror
  _strerror_s
  _strftime_l
  _stricmp
  _stricmp_l
  _stricoll
  _stricoll_l
  _strlwr
  _strlwr_l
  _strlwr_s
  _strlwr_s_l
  _strncoll
  _strncoll_l
  _strnicmp
  _strnicmp_l
  _strnicoll
  _strnicoll_l
  _strnset
  _strnset_s
  _strrev
  _strset
  _strset_s
  _strtime
  _strtime_s
  _strtod_l
  _strtoi64
  _strtoi64_l
  _strtol_l
  _strtoui64
  _strtoui64_l
  _strtoul_l
  _strupr
  _strupr_l
  _strupr_s
  _strupr_s_l
  _strxfrm_l
  _swab
  _swprintf
  _swprintf_c
  _swprintf_c_l
  _swprintf_p
  _swprintf_p_l
  _swprintf_s_l
  _swscanf_l
  _swscanf_s_l
  _sys_errlist
  _sys_nerr
  _tell
  _telli64
  _tempnam
  _time32
  _time64
  _timezone
  _tolower
  _tolower_l
  _toupper
  _toupper_l
  _towlower_l
  _towupper_l
  _tzname
  _tzset
  _ui64toa
  _ui64toa_s
  _ui64tow
  _ui64tow_s
  _ultoa
  _ultoa_s
  _ultow
  _ultow_s
  _umask
  _umask_s
  _ungetc_nolock
  _ungetch
  _ungetch_nolock
  _ungetwc_nolock
  _ungetwch
  _ungetwch_nolock
  _unlink
  _unloaddll
  _unlock
  _unlock_file
  _utime32
  _utime64
  _vcprintf
  _vcprintf_l
  _vcprintf_p
  _vcprintf_p_l
  _vcprintf_s
  _vcprintf_s_l
  _vcwprintf
  _vcwprintf_l
  _vcwprintf_p
  _vcwprintf_p_l
  _vcwprintf_s
  _vcwprintf_s_l
  _vfprintf_l
  _vfprintf_p
  _vfprintf_p_l
  _vfprintf_s_l
  _vfwprintf_l
  _vfwprintf_p
  _vfwprintf_p_l
  _vfwprintf_s_l
  _vprintf_l
  _vprintf_p
  _vprintf_p_l
  _vprintf_s_l
  _vscprintf
  _vscprintf_l
  _vscprintf_p
  _vscprintf_p_l
  _vscwprintf
  _vscwprintf_l
  _vscwprintf_p
  _vscwprintf_p_l
  _vsnprintf
  _vsnprintf_c
  _vsnprintf_c_l
  _vsnprintf_l
  _vsnprintf_s
  _vsnprintf_s_l
  _vsnwprintf
  _vsnwprintf_l
  _vsnwprintf_s
  _vsnwprintf_s_l
  _vsprintf_l
  _vsprintf_p
  _vsprintf_p_l
  _vsprintf_s_l
  _vswprintf
  _vswprintf_c
  _vswprintf_c_l
  _vswprintf_l
  _vswprintf_p
  _vswprintf_p_l
  _vswprintf_s_l
  _vwprintf_l
  _vwprintf_p
  _vwprintf_p_l
  _vwprintf_s_l
  _waccess
  _waccess_s
  _wasctime
  _wasctime_s
  _wassert
  _wchdir
  _wchmod
 ;fixme?; _wcmdln
  _wcreat
  _wcscoll_l
  _wcsdup
  _wcserror
  _wcserror_s
  _wcsftime_l
  _wcsicmp
  _wcsicmp_l
  _wcsicoll
  _wcsicoll_l
  _wcslwr
  _wcslwr_l
  _wcslwr_s
  _wcslwr_s_l
  _wcsncoll
  _wcsncoll_l
  _wcsnicmp
  _wcsnicmp_l
  _wcsnicoll
  _wcsnicoll_l
  _wcsnset
  _wcsnset_s
  _wcsrev
  _wcsset
  _wcsset_s
  _wcstod_l
  _wcstoi64
  _wcstoi64_l
  _wcstol_l
  _wcstombs_l
  _wcstombs_s_l
  _wcstoui64
  _wcstoui64_l
  _wcstoul_l
  _wcsupr
  _wcsupr_l
  _wcsupr_s
  _wcsupr_s_l
  _wcsxfrm_l
  _wctime32
  _wctime32_s
  _wctime64
  _wctime64_s
  _wctomb_l
  _wctomb_s_l
  _wctype
  _wdupenv_s
  _wenviron
  _wexecl
  _wexecle
  _wexeclp
  _wexeclpe
  _wexecv
  _wexecve
  _wexecvp
  _wexecvpe
  _wfdopen
  _wfindfirst32
  _wfindfirst32i64
  _wfindfirst64
  _wfindfirst64i32
  _wfindnext32
  _wfindnext32i64
  _wfindnext64
  _wfindnext64i32
  _wfopen
  _wfopen_s
  _wfreopen
  _wfreopen_s
  _wfsopen
  _wfullpath
  _wgetcwd
  _wgetdcwd
  _wgetdcwd_nolock
  _wgetenv
  _wgetenv_s
  _wmakepath
  _wmakepath_s
  _wmkdir
  _wmktemp
  _wmktemp_s
  _wopen
  _wperror
  _wpgmptr
  _wpopen
  _wprintf_l
  _wprintf_p
  _wprintf_p_l
  _wprintf_s_l
  _wputenv
  _wputenv_s
  _wremove
  _wrename
  _write
  _wrmdir
  _wscanf_l
  _wscanf_s_l
  _wsearchenv
  _wsearchenv_s
  _wsetlocale
  _wsopen
  _wsopen_s
  _wspawnl
  _wspawnle
  _wspawnlp
  _wspawnlpe
  _wspawnv
  _wspawnve
  _wspawnvp
  _wspawnvpe
  _wsplitpath
  _wsplitpath_s
  _wstat32
  _wstat32i64
  _wstat64
  _wstat64i32
  _wstrdate
  _wstrdate_s
  _wstrtime
  _wstrtime_s
  _wsystem
  _wtempnam
  _wtmpnam
  _wtmpnam_s
  _wtof
  _wtof_l
  _wtoi
  _wtoi64
  _wtoi64_l
  _wtoi_l
  _wtol
  _wtol_l
  _wunlink
  _wutime32
  _wutime64
  _y0
  _y1
  _yn
  abort
  abs
  acos
  asctime
  asctime_s
  asin
  atan
  atan2
  atexit
  atof
  atoi
  atol
  bsearch
  bsearch_s
  btowc
  calloc
  ceil
  clearerr
  clearerr_s
  clock
  cos
  cosh
  div
  exit
  exp
  fabs
  fclose
  feof
  ferror
  fflush
  fgetc
  fgetpos
  fgets
  fgetwc
  fgetws
  floor
  fmod
  fopen
  fopen_s
  fprintf
  fprintf_s
  fputc
  fputs
  fputwc
  fputws
  fread
  fread_s
  free
  freopen
  freopen_s
  frexp
  fscanf
  fscanf_s
  fseek
  fsetpos
  ftell
  fwprintf
  fwprintf_s
  fwrite
  fwscanf
  fwscanf_s
  getc
  getchar
  getenv
  getenv_s
  gets
  gets_s
  getwc
  getwchar
  is_wctype
  isalnum
  isalpha
  iscntrl
  isdigit
  isgraph
  isleadbyte
  islower
  isprint
  ispunct
  isspace
  isupper
  iswalnum
  iswalpha
  iswascii
  iswcntrl
  iswctype
  iswdigit
  iswgraph
  iswlower
  iswprint
  iswpunct
  iswspace
  iswupper
  iswxdigit
  isxdigit
  labs
  ldexp
  ldiv
  llabs
  lldiv
  localeconv
  log
  log10
  longjmp
  malloc
  mblen
  mbrlen
  mbrtowc
  mbsrtowcs
  mbsrtowcs_s
  mbstowcs
  mbstowcs_s
  mbtowc
  memchr
  memcmp
  memcpy
  memcpy_s
  memmove
  memmove_s
  memset
  modf
  perror
  pow
  printf
  printf_s
  putc
  putchar
  puts
  putwc
  putwchar
  qsort
  qsort_s
  raise
  rand
  rand_s
  realloc
  remove
  rename
  rewind
  scanf
  scanf_s
  setbuf
  setlocale
  setvbuf
  signal
  sin
  sinh
  sprintf
  sprintf_s
  sqrt
  srand
  sscanf
  sscanf_s
  strcat
  strcat_s
  strchr
  strcmp
  strcoll
  strcpy
  strcpy_s
  strcspn
  strerror
  strerror_s
  strftime
  strlen
  strncat
  strncat_s
  strncmp
  strncpy
  strncpy_s
  strnlen
  strpbrk
  strrchr
  strspn
  strstr
  strtod
  strtok
  strtok_s
  strtol
  strtoul
  strxfrm
  swprintf_s
  swscanf
  swscanf_s
  system
  tan
  tanh
  tmpfile
  tmpfile_s
  tmpnam
  tmpnam_s
  tolower
  toupper
  towlower
  towupper
  ungetc
  ungetwc
  vfprintf
  vfprintf_s
  vfwprintf
  vfwprintf_s
  vprintf
  vprintf_s
  vsprintf
  vsprintf_s
  vswprintf_s
  vwprintf
  vwprintf_s
  wcrtomb
  wcrtomb_s
  wcscat
  wcscat_s
  wcschr
  wcscmp
  wcscoll
  wcscpy
  wcscpy_s
  wcscspn
  wcsftime
  wcslen
  wcsncat
  wcsncat_s
  wcsncmp
  wcsncpy
  wcsncpy_s
  wcsnlen
  wcspbrk
  wcsrchr
  wcsrtombs
  wcsrtombs_s
  wcsspn
  wcsstr
  wcstod
  wcstok
  wcstok_s
  wcstol
  wcstombs
  wcstombs_s
  wcstoul
  wcsxfrm
  wctob
  wctomb
  wctomb_s
  wmemcpy_s
  wmemmove_s
  wprintf
  wprintf_s
  wscanf
  wscanf_s