-
Notifications
You must be signed in to change notification settings - Fork 0
/
msvcrt.inc
2196 lines (1464 loc) · 58.3 KB
/
msvcrt.inc
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
; ------------------------------------------
; prototypes for EXPORT msvcrt functions
; ------------------------------------------
c_msvcrt typedef PROTO C :VARARG
externdef _imp__$I10_OUTPUT:PTR c_msvcrt
crt_$I10_OUTPUT equ <_imp__$I10_OUTPUT>
externdef _imp___CIacos:PTR c_msvcrt
crt__CIacos equ <_imp___CIacos>
externdef _imp___CIasin:PTR c_msvcrt
crt__CIasin equ <_imp___CIasin>
externdef _imp___CIatan:PTR c_msvcrt
crt__CIatan equ <_imp___CIatan>
externdef _imp___CIatan2:PTR c_msvcrt
crt__CIatan2 equ <_imp___CIatan2>
externdef _imp___CIcos:PTR c_msvcrt
crt__CIcos equ <_imp___CIcos>
externdef _imp___CIcosh:PTR c_msvcrt
crt__CIcosh equ <_imp___CIcosh>
externdef _imp___CIexp:PTR c_msvcrt
crt__CIexp equ <_imp___CIexp>
externdef _imp___CIfmod:PTR c_msvcrt
crt__CIfmod equ <_imp___CIfmod>
externdef _imp___CIlog:PTR c_msvcrt
crt__CIlog equ <_imp___CIlog>
externdef _imp___CIlog10:PTR c_msvcrt
crt__CIlog10 equ <_imp___CIlog10>
externdef _imp___CIpow:PTR c_msvcrt
crt__CIpow equ <_imp___CIpow>
externdef _imp___CIsin:PTR c_msvcrt
crt__CIsin equ <_imp___CIsin>
externdef _imp___CIsinh:PTR c_msvcrt
crt__CIsinh equ <_imp___CIsinh>
externdef _imp___CIsqrt:PTR c_msvcrt
crt__CIsqrt equ <_imp___CIsqrt>
externdef _imp___CItan:PTR c_msvcrt
crt__CItan equ <_imp___CItan>
externdef _imp___CItanh:PTR c_msvcrt
crt__CItanh equ <_imp___CItanh>
externdef _imp___CxxThrowException:PTR c_msvcrt
crt__CxxThrowException equ <_imp___CxxThrowException>
externdef _imp___EH_prolog:PTR c_msvcrt
crt__EH_prolog equ <_imp___EH_prolog>
externdef _imp___Getdays:PTR c_msvcrt
crt__Getdays equ <_imp___Getdays>
externdef _imp___Getmonths:PTR c_msvcrt
crt__Getmonths equ <_imp___Getmonths>
externdef _imp___Gettnames:PTR c_msvcrt
crt__Gettnames equ <_imp___Gettnames>
externdef _imp___HUGE:PTR c_msvcrt
crt__HUGE equ <_imp___HUGE>
externdef _imp___Strftime:PTR c_msvcrt
crt__Strftime equ <_imp___Strftime>
externdef _imp___XcptFilter:PTR c_msvcrt
crt__XcptFilter equ <_imp___XcptFilter>
externdef _imp____CxxFrameHandler:PTR c_msvcrt
crt___CxxFrameHandler equ <_imp____CxxFrameHandler>
externdef _imp____CxxLongjmpUnwind:PTR c_msvcrt
crt___CxxLongjmpUnwind equ <_imp____CxxLongjmpUnwind>
externdef _imp____RTCastToVoid:PTR c_msvcrt
crt___RTCastToVoid equ <_imp____RTCastToVoid>
externdef _imp____RTDynamicCast:PTR c_msvcrt
crt___RTDynamicCast equ <_imp____RTDynamicCast>
externdef _imp____RTtypeid:PTR c_msvcrt
crt___RTtypeid equ <_imp____RTtypeid>
externdef _imp____STRINGTOLD:PTR c_msvcrt
crt___STRINGTOLD equ <_imp____STRINGTOLD>
externdef _imp____argc:PTR c_msvcrt
crt___argc equ <_imp____argc>
externdef _imp____argv:PTR c_msvcrt
crt___argv equ <_imp____argv>
externdef _imp____badioinfo:PTR c_msvcrt
crt___badioinfo equ <_imp____badioinfo>
externdef _imp____crtCompareStringA:PTR c_msvcrt
crt___crtCompareStringA equ <_imp____crtCompareStringA>
externdef _imp____crtGetLocaleInfoW:PTR c_msvcrt
crt___crtGetLocaleInfoW equ <_imp____crtGetLocaleInfoW>
externdef _imp____crtLCMapStringA:PTR c_msvcrt
crt___crtLCMapStringA equ <_imp____crtLCMapStringA>
externdef _imp____dllonexit:PTR c_msvcrt
crt___dllonexit equ <_imp____dllonexit>
externdef _imp____doserrno:PTR c_msvcrt
crt___doserrno equ <_imp____doserrno>
externdef _imp____fpecode:PTR c_msvcrt
crt___fpecode equ <_imp____fpecode>
externdef _imp____getmainargs:PTR c_msvcrt
crt___getmainargs equ <_imp____getmainargs>
externdef _imp____initenv:PTR c_msvcrt
crt___initenv equ <_imp____initenv>
externdef _imp____isascii:PTR c_msvcrt
crt___isascii equ <_imp____isascii>
externdef _imp____iscsym:PTR c_msvcrt
crt___iscsym equ <_imp____iscsym>
externdef _imp____iscsymf:PTR c_msvcrt
crt___iscsymf equ <_imp____iscsymf>
externdef _imp____lc_codepage:PTR c_msvcrt
crt___lc_codepage equ <_imp____lc_codepage>
externdef _imp____lc_collate_cp:PTR c_msvcrt
crt___lc_collate_cp equ <_imp____lc_collate_cp>
externdef _imp____lc_handle:PTR c_msvcrt
crt___lc_handle equ <_imp____lc_handle>
externdef _imp____lconv_init:PTR c_msvcrt
crt___lconv_init equ <_imp____lconv_init>
externdef _imp____mb_cur_max:PTR c_msvcrt
crt___mb_cur_max equ <_imp____mb_cur_max>
externdef _imp____p___argc:PTR c_msvcrt
crt___p___argc equ <_imp____p___argc>
externdef _imp____p___argv:PTR c_msvcrt
crt___p___argv equ <_imp____p___argv>
externdef _imp____p___initenv:PTR c_msvcrt
crt___p___initenv equ <_imp____p___initenv>
externdef _imp____p___mb_cur_max:PTR c_msvcrt
crt___p___mb_cur_max equ <_imp____p___mb_cur_max>
externdef _imp____p___wargv:PTR c_msvcrt
crt___p___wargv equ <_imp____p___wargv>
externdef _imp____p___winitenv:PTR c_msvcrt
crt___p___winitenv equ <_imp____p___winitenv>
externdef _imp____p__acmdln:PTR c_msvcrt
crt___p__acmdln equ <_imp____p__acmdln>
externdef _imp____p__amblksiz:PTR c_msvcrt
crt___p__amblksiz equ <_imp____p__amblksiz>
externdef _imp____p__commode:PTR c_msvcrt
crt___p__commode equ <_imp____p__commode>
externdef _imp____p__daylight:PTR c_msvcrt
crt___p__daylight equ <_imp____p__daylight>
externdef _imp____p__dstbias:PTR c_msvcrt
crt___p__dstbias equ <_imp____p__dstbias>
externdef _imp____p__environ:PTR c_msvcrt
crt___p__environ equ <_imp____p__environ>
externdef _imp____p__fileinfo:PTR c_msvcrt
crt___p__fileinfo equ <_imp____p__fileinfo>
externdef _imp____p__fmode:PTR c_msvcrt
crt___p__fmode equ <_imp____p__fmode>
externdef _imp____p__iob:PTR c_msvcrt
crt___p__iob equ <_imp____p__iob>
externdef _imp____p__mbcasemap:PTR c_msvcrt
crt___p__mbcasemap equ <_imp____p__mbcasemap>
externdef _imp____p__mbctype:PTR c_msvcrt
crt___p__mbctype equ <_imp____p__mbctype>
externdef _imp____p__osver:PTR c_msvcrt
crt___p__osver equ <_imp____p__osver>
externdef _imp____p__pctype:PTR c_msvcrt
crt___p__pctype equ <_imp____p__pctype>
externdef _imp____p__pgmptr:PTR c_msvcrt
crt___p__pgmptr equ <_imp____p__pgmptr>
externdef _imp____p__pwctype:PTR c_msvcrt
crt___p__pwctype equ <_imp____p__pwctype>
externdef _imp____p__timezone:PTR c_msvcrt
crt___p__timezone equ <_imp____p__timezone>
externdef _imp____p__tzname:PTR c_msvcrt
crt___p__tzname equ <_imp____p__tzname>
externdef _imp____p__wcmdln:PTR c_msvcrt
crt___p__wcmdln equ <_imp____p__wcmdln>
externdef _imp____p__wenviron:PTR c_msvcrt
crt___p__wenviron equ <_imp____p__wenviron>
externdef _imp____p__winmajor:PTR c_msvcrt
crt___p__winmajor equ <_imp____p__winmajor>
externdef _imp____p__winminor:PTR c_msvcrt
crt___p__winminor equ <_imp____p__winminor>
externdef _imp____p__winver:PTR c_msvcrt
crt___p__winver equ <_imp____p__winver>
externdef _imp____p__wpgmptr:PTR c_msvcrt
crt___p__wpgmptr equ <_imp____p__wpgmptr>
externdef _imp____pioinfo:PTR c_msvcrt
crt___pioinfo equ <_imp____pioinfo>
externdef _imp____pxcptinfoptrs:PTR c_msvcrt
crt___pxcptinfoptrs equ <_imp____pxcptinfoptrs>
externdef _imp____set_app_type:PTR c_msvcrt
crt___set_app_type equ <_imp____set_app_type>
externdef _imp____setlc_active:PTR c_msvcrt
crt___setlc_active equ <_imp____setlc_active>
externdef _imp____setusermatherr:PTR c_msvcrt
crt___setusermatherr equ <_imp____setusermatherr>
externdef _imp____threadhandle:PTR c_msvcrt
crt___threadhandle equ <_imp____threadhandle>
externdef _imp____threadid:PTR c_msvcrt
crt___threadid equ <_imp____threadid>
externdef _imp____toascii:PTR c_msvcrt
crt___toascii equ <_imp____toascii>
externdef _imp____unDName:PTR c_msvcrt
crt___unDName equ <_imp____unDName>
externdef _imp____unDNameEx:PTR c_msvcrt
crt___unDNameEx equ <_imp____unDNameEx>
externdef _imp____unguarded_readlc_active:PTR c_msvcrt
crt___unguarded_readlc_active equ <_imp____unguarded_readlc_active>
externdef _imp____wargv:PTR c_msvcrt
crt___wargv equ <_imp____wargv>
externdef _imp____wgetmainargs:PTR c_msvcrt
crt___wgetmainargs equ <_imp____wgetmainargs>
externdef _imp____winitenv:PTR c_msvcrt
crt___winitenv equ <_imp____winitenv>
externdef _imp___abnormal_termination:PTR c_msvcrt
crt__abnormal_termination equ <_imp___abnormal_termination>
externdef _imp___access:PTR c_msvcrt
crt__access equ <_imp___access>
externdef _imp___acmdln:PTR c_msvcrt
crt__acmdln equ <_imp___acmdln>
externdef _imp___adj_fdiv_m16i:PTR c_msvcrt
crt__adj_fdiv_m16i equ <_imp___adj_fdiv_m16i>
externdef _imp___adj_fdiv_m32:PTR c_msvcrt
crt__adj_fdiv_m32 equ <_imp___adj_fdiv_m32>
externdef _imp___adj_fdiv_m32i:PTR c_msvcrt
crt__adj_fdiv_m32i equ <_imp___adj_fdiv_m32i>
externdef _imp___adj_fdiv_m64:PTR c_msvcrt
crt__adj_fdiv_m64 equ <_imp___adj_fdiv_m64>
externdef _imp___adj_fdiv_r:PTR c_msvcrt
crt__adj_fdiv_r equ <_imp___adj_fdiv_r>
externdef _imp___adj_fdivr_m16i:PTR c_msvcrt
crt__adj_fdivr_m16i equ <_imp___adj_fdivr_m16i>
externdef _imp___adj_fdivr_m32:PTR c_msvcrt
crt__adj_fdivr_m32 equ <_imp___adj_fdivr_m32>
externdef _imp___adj_fdivr_m32i:PTR c_msvcrt
crt__adj_fdivr_m32i equ <_imp___adj_fdivr_m32i>
externdef _imp___adj_fdivr_m64:PTR c_msvcrt
crt__adj_fdivr_m64 equ <_imp___adj_fdivr_m64>
externdef _imp___adj_fpatan:PTR c_msvcrt
crt__adj_fpatan equ <_imp___adj_fpatan>
externdef _imp___adj_fprem:PTR c_msvcrt
crt__adj_fprem equ <_imp___adj_fprem>
externdef _imp___adj_fprem1:PTR c_msvcrt
crt__adj_fprem1 equ <_imp___adj_fprem1>
externdef _imp___adj_fptan:PTR c_msvcrt
crt__adj_fptan equ <_imp___adj_fptan>
externdef _imp___adjust_fdiv:PTR c_msvcrt
crt__adjust_fdiv equ <_imp___adjust_fdiv>
externdef _imp___aexit_rtn:PTR c_msvcrt
crt__aexit_rtn equ <_imp___aexit_rtn>
externdef _imp___amsg_exit:PTR c_msvcrt
crt__amsg_exit equ <_imp___amsg_exit>
externdef _imp___assert:PTR c_msvcrt
crt__assert equ <_imp___assert>
externdef _imp___atodbl:PTR c_msvcrt
crt__atodbl equ <_imp___atodbl>
externdef _imp___atoi64:PTR c_msvcrt
crt__atoi64 equ <_imp___atoi64>
externdef _imp___atoldbl:PTR c_msvcrt
crt__atoldbl equ <_imp___atoldbl>
externdef _imp___beep:PTR c_msvcrt
crt__beep equ <_imp___beep>
externdef _imp___beginthread:PTR c_msvcrt
crt__beginthread equ <_imp___beginthread>
externdef _imp___beginthreadex:PTR c_msvcrt
crt__beginthreadex equ <_imp___beginthreadex>
externdef _imp___c_exit:PTR c_msvcrt
crt__c_exit equ <_imp___c_exit>
externdef _imp___cabs:PTR c_msvcrt
crt__cabs equ <_imp___cabs>
externdef _imp___callnewh:PTR c_msvcrt
crt__callnewh equ <_imp___callnewh>
externdef _imp___cexit:PTR c_msvcrt
crt__cexit equ <_imp___cexit>
externdef _imp___cgets:PTR c_msvcrt
crt__cgets equ <_imp___cgets>
externdef _imp___chdir:PTR c_msvcrt
crt__chdir equ <_imp___chdir>
externdef _imp___chdrive:PTR c_msvcrt
crt__chdrive equ <_imp___chdrive>
externdef _imp___chgsign:PTR c_msvcrt
crt__chgsign equ <_imp___chgsign>
externdef _imp___chkesp:PTR c_msvcrt
crt__chkesp equ <_imp___chkesp>
externdef _imp___chmod:PTR c_msvcrt
crt__chmod equ <_imp___chmod>
externdef _imp___chsize:PTR c_msvcrt
crt__chsize equ <_imp___chsize>
externdef _imp___clearfp:PTR c_msvcrt
crt__clearfp equ <_imp___clearfp>
externdef _imp___close:PTR c_msvcrt
crt__close equ <_imp___close>
externdef _imp___commit:PTR c_msvcrt
crt__commit equ <_imp___commit>
externdef _imp___commode:PTR c_msvcrt
crt__commode equ <_imp___commode>
externdef _imp___control87:PTR c_msvcrt
crt__control87 equ <_imp___control87>
externdef _imp___controlfp:PTR c_msvcrt
crt__controlfp equ <_imp___controlfp>
externdef _imp___copysign:PTR c_msvcrt
crt__copysign equ <_imp___copysign>
externdef _imp___cprintf:PTR c_msvcrt
crt__cprintf equ <_imp___cprintf>
externdef _imp___cputs:PTR c_msvcrt
crt__cputs equ <_imp___cputs>
externdef _imp___creat:PTR c_msvcrt
crt__creat equ <_imp___creat>
externdef _imp___cscanf:PTR c_msvcrt
crt__cscanf equ <_imp___cscanf>
externdef _imp___ctime64:PTR c_msvcrt
crt__ctime64 equ <_imp___ctime64>
externdef _imp___ctype:PTR c_msvcrt
crt__ctype equ <_imp___ctype>
externdef _imp___cwait:PTR c_msvcrt
crt__cwait equ <_imp___cwait>
externdef _imp___daylight:PTR c_msvcrt
crt__daylight equ <_imp___daylight>
externdef _imp___dstbias:PTR c_msvcrt
crt__dstbias equ <_imp___dstbias>
externdef _imp___dup:PTR c_msvcrt
crt__dup equ <_imp___dup>
externdef _imp___dup2:PTR c_msvcrt
crt__dup2 equ <_imp___dup2>
externdef _imp___ecvt:PTR c_msvcrt
crt__ecvt equ <_imp___ecvt>
externdef _imp___endthread:PTR c_msvcrt
crt__endthread equ <_imp___endthread>
externdef _imp___endthreadex:PTR c_msvcrt
crt__endthreadex equ <_imp___endthreadex>
externdef _imp___environ:PTR c_msvcrt
crt__environ equ <_imp___environ>
externdef _imp___eof:PTR c_msvcrt
crt__eof equ <_imp___eof>
externdef _imp___errno:PTR c_msvcrt
crt__errno equ <_imp___errno>
externdef _imp___except_handler2:PTR c_msvcrt
crt__except_handler2 equ <_imp___except_handler2>
externdef _imp___except_handler3:PTR c_msvcrt
crt__except_handler3 equ <_imp___except_handler3>
externdef _imp___execl:PTR c_msvcrt
crt__execl equ <_imp___execl>
externdef _imp___execle:PTR c_msvcrt
crt__execle equ <_imp___execle>
externdef _imp___execlp:PTR c_msvcrt
crt__execlp equ <_imp___execlp>
externdef _imp___execlpe:PTR c_msvcrt
crt__execlpe equ <_imp___execlpe>
externdef _imp___execv:PTR c_msvcrt
crt__execv equ <_imp___execv>
externdef _imp___execve:PTR c_msvcrt
crt__execve equ <_imp___execve>
externdef _imp___execvp:PTR c_msvcrt
crt__execvp equ <_imp___execvp>
externdef _imp___execvpe:PTR c_msvcrt
crt__execvpe equ <_imp___execvpe>
externdef _imp___exit:PTR c_msvcrt
crt__exit equ <_imp___exit>
externdef _imp___expand:PTR c_msvcrt
crt__expand equ <_imp___expand>
externdef _imp___fcloseall:PTR c_msvcrt
crt__fcloseall equ <_imp___fcloseall>
externdef _imp___fcvt:PTR c_msvcrt
crt__fcvt equ <_imp___fcvt>
externdef _imp___fdopen:PTR c_msvcrt
crt__fdopen equ <_imp___fdopen>
externdef _imp___fgetchar:PTR c_msvcrt
crt__fgetchar equ <_imp___fgetchar>
externdef _imp___fgetwchar:PTR c_msvcrt
crt__fgetwchar equ <_imp___fgetwchar>
externdef _imp___filbuf:PTR c_msvcrt
crt__filbuf equ <_imp___filbuf>
externdef _imp___fileinfo:PTR c_msvcrt
crt__fileinfo equ <_imp___fileinfo>
externdef _imp___filelength:PTR c_msvcrt
crt__filelength equ <_imp___filelength>
externdef _imp___filelengthi64:PTR c_msvcrt
crt__filelengthi64 equ <_imp___filelengthi64>
externdef _imp___fileno:PTR c_msvcrt
crt__fileno equ <_imp___fileno>
externdef _imp___findclose:PTR c_msvcrt
crt__findclose equ <_imp___findclose>
externdef _imp___findfirst:PTR c_msvcrt
crt__findfirst equ <_imp___findfirst>
externdef _imp___findfirst64:PTR c_msvcrt
crt__findfirst64 equ <_imp___findfirst64>
externdef _imp___findfirsti64:PTR c_msvcrt
crt__findfirsti64 equ <_imp___findfirsti64>
externdef _imp___findnext:PTR c_msvcrt
crt__findnext equ <_imp___findnext>
externdef _imp___findnext64:PTR c_msvcrt
crt__findnext64 equ <_imp___findnext64>
externdef _imp___findnexti64:PTR c_msvcrt
crt__findnexti64 equ <_imp___findnexti64>
externdef _imp___finite:PTR c_msvcrt
crt__finite equ <_imp___finite>
externdef _imp___flsbuf:PTR c_msvcrt
crt__flsbuf equ <_imp___flsbuf>
externdef _imp___flushall:PTR c_msvcrt
crt__flushall equ <_imp___flushall>
externdef _imp___fmode:PTR c_msvcrt
crt__fmode equ <_imp___fmode>
externdef _imp___fpclass:PTR c_msvcrt
crt__fpclass equ <_imp___fpclass>
externdef _imp___fpieee_flt:PTR c_msvcrt
crt__fpieee_flt equ <_imp___fpieee_flt>
externdef _imp___fpreset:PTR c_msvcrt
crt__fpreset equ <_imp___fpreset>
externdef _imp___fputchar:PTR c_msvcrt
crt__fputchar equ <_imp___fputchar>
externdef _imp___fputwchar:PTR c_msvcrt
crt__fputwchar equ <_imp___fputwchar>
externdef _imp___fsopen:PTR c_msvcrt
crt__fsopen equ <_imp___fsopen>
externdef _imp___fstat:PTR c_msvcrt
crt__fstat equ <_imp___fstat>
externdef _imp___fstat64:PTR c_msvcrt
crt__fstat64 equ <_imp___fstat64>
externdef _imp___fstati64:PTR c_msvcrt
crt__fstati64 equ <_imp___fstati64>
externdef _imp___ftime:PTR c_msvcrt
crt__ftime equ <_imp___ftime>
externdef _imp___ftime64:PTR c_msvcrt
crt__ftime64 equ <_imp___ftime64>
externdef _imp___ftol:PTR c_msvcrt
crt__ftol equ <_imp___ftol>
externdef _imp___fullpath:PTR c_msvcrt
crt__fullpath equ <_imp___fullpath>
externdef _imp___futime:PTR c_msvcrt
crt__futime equ <_imp___futime>
externdef _imp___futime64:PTR c_msvcrt
crt__futime64 equ <_imp___futime64>
externdef _imp___gcvt:PTR c_msvcrt
crt__gcvt equ <_imp___gcvt>
externdef _imp___get_heap_handle:PTR c_msvcrt
crt__get_heap_handle equ <_imp___get_heap_handle>
externdef _imp___get_osfhandle:PTR c_msvcrt
crt__get_osfhandle equ <_imp___get_osfhandle>
externdef _imp___get_sbh_threshold:PTR c_msvcrt
crt__get_sbh_threshold equ <_imp___get_sbh_threshold>
externdef _imp___getch:PTR c_msvcrt
crt__getch equ <_imp___getch>
externdef _imp___getche:PTR c_msvcrt
crt__getche equ <_imp___getche>
externdef _imp___getcwd:PTR c_msvcrt
crt__getcwd equ <_imp___getcwd>
externdef _imp___getdcwd:PTR c_msvcrt
crt__getdcwd equ <_imp___getdcwd>
externdef _imp___getdiskfree:PTR c_msvcrt
crt__getdiskfree equ <_imp___getdiskfree>
externdef _imp___getdllprocaddr:PTR c_msvcrt
crt__getdllprocaddr equ <_imp___getdllprocaddr>
externdef _imp___getdrive:PTR c_msvcrt
crt__getdrive equ <_imp___getdrive>
externdef _imp___getdrives:PTR c_msvcrt
crt__getdrives equ <_imp___getdrives>
externdef _imp___getmaxstdio:PTR c_msvcrt
crt__getmaxstdio equ <_imp___getmaxstdio>
externdef _imp___getmbcp:PTR c_msvcrt
crt__getmbcp equ <_imp___getmbcp>
externdef _imp___getpid:PTR c_msvcrt
crt__getpid equ <_imp___getpid>
externdef _imp___getsystime:PTR c_msvcrt
crt__getsystime equ <_imp___getsystime>
externdef _imp___getw:PTR c_msvcrt
crt__getw equ <_imp___getw>
externdef _imp___getws:PTR c_msvcrt
crt__getws equ <_imp___getws>
externdef _imp___global_unwind2:PTR c_msvcrt
crt__global_unwind2 equ <_imp___global_unwind2>
externdef _imp___gmtime64:PTR c_msvcrt
crt__gmtime64 equ <_imp___gmtime64>
externdef _imp___heapadd:PTR c_msvcrt
crt__heapadd equ <_imp___heapadd>
externdef _imp___heapchk:PTR c_msvcrt
crt__heapchk equ <_imp___heapchk>
externdef _imp___heapmin:PTR c_msvcrt
crt__heapmin equ <_imp___heapmin>
externdef _imp___heapset:PTR c_msvcrt
crt__heapset equ <_imp___heapset>
externdef _imp___heapused:PTR c_msvcrt
crt__heapused equ <_imp___heapused>
externdef _imp___heapwalk:PTR c_msvcrt
crt__heapwalk equ <_imp___heapwalk>
externdef _imp___hypot:PTR c_msvcrt
crt__hypot equ <_imp___hypot>
externdef _imp___i64toa:PTR c_msvcrt
crt__i64toa equ <_imp___i64toa>
externdef _imp___i64tow:PTR c_msvcrt
crt__i64tow equ <_imp___i64tow>
externdef _imp___initterm:PTR c_msvcrt
crt__initterm equ <_imp___initterm>
externdef _imp___inp:PTR c_msvcrt
crt__inp equ <_imp___inp>
externdef _imp___inpd:PTR c_msvcrt
crt__inpd equ <_imp___inpd>
externdef _imp___inpw:PTR c_msvcrt
crt__inpw equ <_imp___inpw>
externdef _imp___iob:PTR c_msvcrt
crt__iob equ <_imp___iob>
externdef _imp___isatty:PTR c_msvcrt
crt__isatty equ <_imp___isatty>
externdef _imp___isctype:PTR c_msvcrt
crt__isctype equ <_imp___isctype>
externdef _imp___ismbbalnum:PTR c_msvcrt
crt__ismbbalnum equ <_imp___ismbbalnum>
externdef _imp___ismbbalpha:PTR c_msvcrt
crt__ismbbalpha equ <_imp___ismbbalpha>
externdef _imp___ismbbgraph:PTR c_msvcrt
crt__ismbbgraph equ <_imp___ismbbgraph>
externdef _imp___ismbbkalnum:PTR c_msvcrt
crt__ismbbkalnum equ <_imp___ismbbkalnum>
externdef _imp___ismbbkana:PTR c_msvcrt
crt__ismbbkana equ <_imp___ismbbkana>
externdef _imp___ismbbkprint:PTR c_msvcrt
crt__ismbbkprint equ <_imp___ismbbkprint>
externdef _imp___ismbbkpunct:PTR c_msvcrt
crt__ismbbkpunct equ <_imp___ismbbkpunct>
externdef _imp___ismbblead:PTR c_msvcrt
crt__ismbblead equ <_imp___ismbblead>
externdef _imp___ismbbprint:PTR c_msvcrt
crt__ismbbprint equ <_imp___ismbbprint>
externdef _imp___ismbbpunct:PTR c_msvcrt
crt__ismbbpunct equ <_imp___ismbbpunct>
externdef _imp___ismbbtrail:PTR c_msvcrt
crt__ismbbtrail equ <_imp___ismbbtrail>
externdef _imp___ismbcalnum:PTR c_msvcrt
crt__ismbcalnum equ <_imp___ismbcalnum>
externdef _imp___ismbcalpha:PTR c_msvcrt
crt__ismbcalpha equ <_imp___ismbcalpha>
externdef _imp___ismbcdigit:PTR c_msvcrt
crt__ismbcdigit equ <_imp___ismbcdigit>
externdef _imp___ismbcgraph:PTR c_msvcrt
crt__ismbcgraph equ <_imp___ismbcgraph>
externdef _imp___ismbchira:PTR c_msvcrt
crt__ismbchira equ <_imp___ismbchira>
externdef _imp___ismbckata:PTR c_msvcrt
crt__ismbckata equ <_imp___ismbckata>
externdef _imp___ismbcl0:PTR c_msvcrt
crt__ismbcl0 equ <_imp___ismbcl0>
externdef _imp___ismbcl1:PTR c_msvcrt
crt__ismbcl1 equ <_imp___ismbcl1>
externdef _imp___ismbcl2:PTR c_msvcrt
crt__ismbcl2 equ <_imp___ismbcl2>
externdef _imp___ismbclegal:PTR c_msvcrt
crt__ismbclegal equ <_imp___ismbclegal>
externdef _imp___ismbclower:PTR c_msvcrt
crt__ismbclower equ <_imp___ismbclower>
externdef _imp___ismbcprint:PTR c_msvcrt
crt__ismbcprint equ <_imp___ismbcprint>
externdef _imp___ismbcpunct:PTR c_msvcrt
crt__ismbcpunct equ <_imp___ismbcpunct>
externdef _imp___ismbcspace:PTR c_msvcrt
crt__ismbcspace equ <_imp___ismbcspace>
externdef _imp___ismbcsymbol:PTR c_msvcrt
crt__ismbcsymbol equ <_imp___ismbcsymbol>
externdef _imp___ismbcupper:PTR c_msvcrt
crt__ismbcupper equ <_imp___ismbcupper>
externdef _imp___ismbslead:PTR c_msvcrt
crt__ismbslead equ <_imp___ismbslead>
externdef _imp___ismbstrail:PTR c_msvcrt
crt__ismbstrail equ <_imp___ismbstrail>
externdef _imp___isnan:PTR c_msvcrt
crt__isnan equ <_imp___isnan>
externdef _imp___itoa:PTR c_msvcrt
crt__itoa equ <_imp___itoa>
externdef _imp___itow:PTR c_msvcrt
crt__itow equ <_imp___itow>
externdef _imp___j0:PTR c_msvcrt
crt__j0 equ <_imp___j0>
externdef _imp___j1:PTR c_msvcrt
crt__j1 equ <_imp___j1>
externdef _imp___jn:PTR c_msvcrt
crt__jn equ <_imp___jn>
externdef _imp___kbhit:PTR c_msvcrt
crt__kbhit equ <_imp___kbhit>
externdef _imp___lfind:PTR c_msvcrt
crt__lfind equ <_imp___lfind>
externdef _imp___loaddll:PTR c_msvcrt
crt__loaddll equ <_imp___loaddll>
externdef _imp___local_unwind2:PTR c_msvcrt
crt__local_unwind2 equ <_imp___local_unwind2>
externdef _imp___localtime64:PTR c_msvcrt
crt__localtime64 equ <_imp___localtime64>
externdef _imp___lock:PTR c_msvcrt
crt__lock equ <_imp___lock>
externdef _imp___locking:PTR c_msvcrt
crt__locking equ <_imp___locking>
externdef _imp___logb:PTR c_msvcrt
crt__logb equ <_imp___logb>
externdef _imp___longjmpex:PTR c_msvcrt
crt__longjmpex equ <_imp___longjmpex>
externdef _imp___lrotl:PTR c_msvcrt
crt__lrotl equ <_imp___lrotl>
externdef _imp___lrotr:PTR c_msvcrt
crt__lrotr equ <_imp___lrotr>
externdef _imp___lsearch:PTR c_msvcrt
crt__lsearch equ <_imp___lsearch>
externdef _imp___lseek:PTR c_msvcrt
crt__lseek equ <_imp___lseek>
externdef _imp___lseeki64:PTR c_msvcrt
crt__lseeki64 equ <_imp___lseeki64>
externdef _imp___ltoa:PTR c_msvcrt
crt__ltoa equ <_imp___ltoa>
externdef _imp___ltow:PTR c_msvcrt
crt__ltow equ <_imp___ltow>
externdef _imp___makepath:PTR c_msvcrt
crt__makepath equ <_imp___makepath>
externdef _imp___mbbtombc:PTR c_msvcrt
crt__mbbtombc equ <_imp___mbbtombc>
externdef _imp___mbbtype:PTR c_msvcrt
crt__mbbtype equ <_imp___mbbtype>
externdef _imp___mbcasemap:PTR c_msvcrt
crt__mbcasemap equ <_imp___mbcasemap>
externdef _imp___mbccpy:PTR c_msvcrt
crt__mbccpy equ <_imp___mbccpy>
externdef _imp___mbcjistojms:PTR c_msvcrt
crt__mbcjistojms equ <_imp___mbcjistojms>
externdef _imp___mbcjmstojis:PTR c_msvcrt
crt__mbcjmstojis equ <_imp___mbcjmstojis>
externdef _imp___mbclen:PTR c_msvcrt
crt__mbclen equ <_imp___mbclen>
externdef _imp___mbctohira:PTR c_msvcrt
crt__mbctohira equ <_imp___mbctohira>
externdef _imp___mbctokata:PTR c_msvcrt
crt__mbctokata equ <_imp___mbctokata>
externdef _imp___mbctolower:PTR c_msvcrt
crt__mbctolower equ <_imp___mbctolower>
externdef _imp___mbctombb:PTR c_msvcrt
crt__mbctombb equ <_imp___mbctombb>
externdef _imp___mbctoupper:PTR c_msvcrt
crt__mbctoupper equ <_imp___mbctoupper>
externdef _imp___mbctype:PTR c_msvcrt
crt__mbctype equ <_imp___mbctype>
externdef _imp___mbsbtype:PTR c_msvcrt
crt__mbsbtype equ <_imp___mbsbtype>
externdef _imp___mbscat:PTR c_msvcrt
crt__mbscat equ <_imp___mbscat>
externdef _imp___mbschr:PTR c_msvcrt
crt__mbschr equ <_imp___mbschr>
externdef _imp___mbscmp:PTR c_msvcrt
crt__mbscmp equ <_imp___mbscmp>
externdef _imp___mbscoll:PTR c_msvcrt
crt__mbscoll equ <_imp___mbscoll>
externdef _imp___mbscpy:PTR c_msvcrt
crt__mbscpy equ <_imp___mbscpy>
externdef _imp___mbscspn:PTR c_msvcrt
crt__mbscspn equ <_imp___mbscspn>
externdef _imp___mbsdec:PTR c_msvcrt
crt__mbsdec equ <_imp___mbsdec>
externdef _imp___mbsdup:PTR c_msvcrt
crt__mbsdup equ <_imp___mbsdup>
externdef _imp___mbsicmp:PTR c_msvcrt
crt__mbsicmp equ <_imp___mbsicmp>
externdef _imp___mbsicoll:PTR c_msvcrt
crt__mbsicoll equ <_imp___mbsicoll>
externdef _imp___mbsinc:PTR c_msvcrt
crt__mbsinc equ <_imp___mbsinc>
externdef _imp___mbslen:PTR c_msvcrt
crt__mbslen equ <_imp___mbslen>
externdef _imp___mbslwr:PTR c_msvcrt
crt__mbslwr equ <_imp___mbslwr>
externdef _imp___mbsnbcat:PTR c_msvcrt
crt__mbsnbcat equ <_imp___mbsnbcat>
externdef _imp___mbsnbcmp:PTR c_msvcrt
crt__mbsnbcmp equ <_imp___mbsnbcmp>
externdef _imp___mbsnbcnt:PTR c_msvcrt
crt__mbsnbcnt equ <_imp___mbsnbcnt>
externdef _imp___mbsnbcoll:PTR c_msvcrt
crt__mbsnbcoll equ <_imp___mbsnbcoll>
externdef _imp___mbsnbcpy:PTR c_msvcrt
crt__mbsnbcpy equ <_imp___mbsnbcpy>
externdef _imp___mbsnbicmp:PTR c_msvcrt
crt__mbsnbicmp equ <_imp___mbsnbicmp>
externdef _imp___mbsnbicoll:PTR c_msvcrt
crt__mbsnbicoll equ <_imp___mbsnbicoll>
externdef _imp___mbsnbset:PTR c_msvcrt
crt__mbsnbset equ <_imp___mbsnbset>
externdef _imp___mbsncat:PTR c_msvcrt
crt__mbsncat equ <_imp___mbsncat>
externdef _imp___mbsnccnt:PTR c_msvcrt
crt__mbsnccnt equ <_imp___mbsnccnt>
externdef _imp___mbsncmp:PTR c_msvcrt
crt__mbsncmp equ <_imp___mbsncmp>
externdef _imp___mbsncoll:PTR c_msvcrt
crt__mbsncoll equ <_imp___mbsncoll>
externdef _imp___mbsncpy:PTR c_msvcrt
crt__mbsncpy equ <_imp___mbsncpy>
externdef _imp___mbsnextc:PTR c_msvcrt
crt__mbsnextc equ <_imp___mbsnextc>
externdef _imp___mbsnicmp:PTR c_msvcrt