Changeset 2176 for trunk/src


Ignore:
Timestamp:
Dec 21, 1999, 1:25:55 PM (26 years ago)
Author:
sandervl
Message:

changed .def; link with crtdll.lib instead

Location:
trunk/src/msvcrt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/msvcrt/makefile

    r2157 r2176  
    1 # $Id: makefile,v 1.6 1999-12-20 11:10:07 sandervl Exp $
     1# $Id: makefile,v 1.7 1999-12-21 12:25:55 sandervl Exp $
    22
    33#
     
    3333        $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) $(TARGET).def \
    3434              $(PDWIN32_LIB)/pmwinx.lib $(PDWIN32_LIB)/kernel32.lib \
     35              $(PDWIN32_LIB)/crtdll.lib \
    3536              $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
    3637        $(CP) $@ $(PDWIN32_BIN)
  • trunk/src/msvcrt/msvcrt.def

    r2153 r2176  
    1 ; $Id: msvcrt.def,v 1.10 1999-12-20 10:12:43 sandervl Exp $
     1; $Id: msvcrt.def,v 1.11 1999-12-21 12:25:55 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
    44LIBRARY MSVCRT INITINSTANCE TERMINSTANCE
    55DATA MULTIPLE NONSHARED
    6 
    7 IMPORTS
    8 ; Forwarded APIs - KERNEL32
    9         KERNEL32_memmove        = KERNEL32.memmove
    10         KERNEL32_CompareStringA = KERNEL32._CompareStringA
    11         KERNEL32_GetLocaleInfoW = KERNEL32._GetLocaleInfoW
    12         KERNEL32_LCMapStringA   = KERNEL32._LCMapStringA
    13 
    14 ; Forwarded APIs - NTDLL
    15         NTDLL__CIpow            = NTDLL._CIpow 
    16         NTDLL__ftol             = NTDLL._ftol
    17         NTDLL__itoa             = NTDLL._itoa
    18         NTDLL__ltoa             = NTDLL._ltoa
    19         NTDLL__memicmp          = NTDLL._memicmp
    20         NTDLL__snprintf         = NTDLL._snprintf
    21         NTDLL__snwprintf        = NTDLL._snwprintf
    22         NTDLL__splitpath        = NTDLL._splitpath
    23         NTDLL__strcmpi          = NTDLL._strcmpi
    24         NTDLL__stricmp          = NTDLL._stricmp
    25         NTDLL__strlwr           = NTDLL._strlwr
    26         NTDLL__strnicmp         = NTDLL._strnicmp
    27         NTDLL__strupr           = NTDLL._strupr
    28         NTDLL__ultoa            = NTDLL._ultoa
    29         NTDLL__vsnprintf        = NTDLL._vsnprintf
    30         NTDLL__wcsicmp          = NTDLL._wcsicmp
    31         NTDLL__wcslwr           = NTDLL._wcslwr
    32         NTDLL__wcsnicmp         = NTDLL._wcsnicmp
    33         NTDLL__wcsupr           = NTDLL._wcsupr
    34         NTDLL__wtoi             = NTDLL._wtoi
    35         NTDLL__wtol             = NTDLL._wtol
    36         NTDLL_abs               = NTDLL.abs
    37         NTDLL_atan              = NTDLL.atan
    38         NTDLL_atoi              = NTDLL.atoi
    39         NTDLL_atol              = NTDLL.atol
    40         NTDLL_ceil              = NTDLL.ceil
    41         NTDLL_cos               = NTDLL.cos
    42         NTDLL_fabs              = NTDLL.fabs
    43         NTDLL_floor             = NTDLL.floor
    44         NTDLL_isalpha           = NTDLL.isalpha
    45         NTDLL_isdigit           = NTDLL.isdigit
    46         NTDLL_islower           = NTDLL.islower
    47         NTDLL_isprint           = NTDLL.isprint
    48         NTDLL_isspace           = NTDLL.isspace
    49         NTDLL_isupper           = NTDLL.isupper
    50         NTDLL_iswalpha          = NTDLL.iswalpha
    51         NTDLL_iswctype          = NTDLL.iswctype
    52         NTDLL_isxdigit          = NTDLL.isxdigit
    53         NTDLL_labs              = NTDLL.labs
    54         NTDLL_log               = NTDLL.log
    55         NTDLL_mbstowcs          = NTDLL.mbstowcs
    56         NTDLL_memchr            = NTDLL.memchr
    57         NTDLL_memcmp            = NTDLL.memcmp
    58         NTDLL_memcpy            = NTDLL.memcpy
    59         NTDLL_memset            = NTDLL.memset
    60         NTDLL_pow               = NTDLL.pow
    61         NTDLL_qsort             = NTDLL.qsort   
    62         NTDLL_sin               = NTDLL.sin
    63         NTDLL_sprintf           = NTDLL.sprintf
    64         NTDLL_sqrt              = NTDLL.sqrt
    65         NTDLL_sscanf            = NTDLL.sscanf
    66         NTDLL_strcat            = NTDLL.strcat
    67         NTDLL_strchr            = NTDLL.strchr
    68         NTDLL_strcmp            = NTDLL.strcmp
    69         NTDLL_strcpy            = NTDLL.strcpy
    70         NTDLL_strcspn           = NTDLL.strcspn
    71         NTDLL_strlen            = NTDLL.strlen
    72         NTDLL_strncat           = NTDLL.strncat
    73         NTDLL_strncmp           = NTDLL.strncmp
    74         NTDLL_strncpy           = NTDLL.strncpy
    75         NTDLL_strpbrk           = NTDLL.strpbrk
    76         NTDLL_strrchr           = NTDLL.strrchr
    77         NTDLL_strspn            = NTDLL.strspn
    78         NTDLL_strstr            = NTDLL.strstr
    79         NTDLL_swprintf          = NTDLL.swprintf
    80         NTDLL_tan               = NTDLL.tan     
    81         NTDLL_tolower           = NTDLL.tolower
    82         NTDLL_toupper           = NTDLL.toupper
    83         NTDLL_towlower          = NTDLL.towlower
    84         NTDLL_towupper          = NTDLL.towupper
    85         NTDLL_vsprintf          = NTDLL.vsprintf
    86         NTDLL_wcscat            = NTDLL.wcscat 
    87         NTDLL_wcschr            = NTDLL.wcschr 
    88         NTDLL_wcscmp            = NTDLL.wcscmp 
    89         NTDLL_wcscpy            = NTDLL.wcscpy 
    90         NTDLL_wcscspn           = NTDLL.wcscspn
    91         NTDLL_wcslen            = NTDLL.wcslen 
    92         NTDLL_wcsncat           = NTDLL.wcsncat
    93         NTDLL_wcsncmp           = NTDLL.wcsncmp
    94         NTDLL_wcsncpy           = NTDLL.wcsncpy
    95         NTDLL_wcspbrk           = NTDLL.wcspbrk
    96         NTDLL_wcsrchr           = NTDLL.wcsrchr
    97         NTDLL_wcsspn            = NTDLL.wcsspn 
    98         NTDLL_wcsstr            = NTDLL.wcsstr 
    99         NTDLL_wcstok            = NTDLL.wcstok
    100         NTDLL_wcstol            = NTDLL.wcstol
    101         NTDLL_wcstombs          = NTDLL.wcstombs
    102         NTDLL_wcstoul           = NTDLL.wcstoul
    103 
    104 ; Forwarded APIs - CRTDLL
    105         CRTDLL___dllonexit      = CRTDLL.__dllonexit
    106         CRTDLL___doserrno       = CRTDLL.__doserrno
    107         CRTDLL___fpecode        = CRTDLL.__fpecode
    108         CRTDLL___isascii        = CRTDLL.__isascii
    109         CRTDLL___iscsym         = CRTDLL.__iscsym
    110         CRTDLL___iscsymf        = CRTDLL.__iscsymf
    111         CRTDLL___threadhandle   = CRTDLL.__threadhandle
    112         CRTDLL___threadid       = CRTDLL.__threadid
    113 
    114         CRTDLL__CIacos          = CRTDLL._CIacos
    115         CRTDLL__CIasin          = CRTDLL._CIasin
    116         CRTDLL__CIatan          = CRTDLL._CIatan
    117         CRTDLL__CIatan2         = CRTDLL._CIatan2
    118         CRTDLL__CIcos           = CRTDLL._CIcos
    119         CRTDLL__CIcosh          = CRTDLL._CIcosh
    120         CRTDLL__CIexp           = CRTDLL._CIexp
    121         CRTDLL__CIfmod          = CRTDLL._CIfmod
    122         CRTDLL__CIlog           = CRTDLL._CIlog
    123         CRTDLL__CIlog10         = CRTDLL._CIlog10
    124         CRTDLL__CIsin           = CRTDLL._CIsin
    125         CRTDLL__CIsinh          = CRTDLL._CIsinh
    126         CRTDLL__CIsqrt          = CRTDLL._CIsqrt
    127         CRTDLL__CItan           = CRTDLL._CItan
    128         CRTDLL__CItanh          = CRTDLL._CItanh
    129         CRTDLL__abnormal_termination = CRTDLL._abnormal_termination
    130         CRTDLL__access          = CRTDLL._access
    131         CRTDLL__amsg_exit       = CRTDLL._amsg_exit
    132         CRTDLL__assert          = CRTDLL._assert
    133         CRTDLL__beep            = CRTDLL._beep
    134         CRTDLL__beginthread     = CRTDLL._beginthread
    135         CRTDLL__c_exit          = CRTDLL._c_exit
    136         CRTDLL__cabs            = CRTDLL._cabs
    137         CRTDLL__cexit           = CRTDLL._cexit
    138         CRTDLL__cgets           = CRTDLL._cgets
    139         CRTDLL__chdir           = CRTDLL._chdir
    140         CRTDLL__chdrive         = CRTDLL._chdrive
    141         CRTDLL__chgsign         = CRTDLL._chgsign
    142         CRTDLL__chmod           = CRTDLL._chmod
    143         CRTDLL__chsize          = CRTDLL._chsize
    144         CRTDLL__clearfp         = CRTDLL._clearfp
    145         CRTDLL__close           = CRTDLL._close
    146         CRTDLL__commit          = CRTDLL._commit
    147         CRTDLL__control87       = CRTDLL._control87
    148         CRTDLL__controlfp       = CRTDLL._controlfp
    149         CRTDLL__copysign        = CRTDLL._copysign
    150         CRTDLL__cprintf         = CRTDLL._cprintf
    151         CRTDLL__cputs           = CRTDLL._cputs
    152         CRTDLL__creat           = CRTDLL._creat
    153         CRTDLL__cscanf          = CRTDLL._cscanf
    154         CRTDLL__cwait           = CRTDLL._cwait
    155         CRTDLL__dup             = CRTDLL._dup
    156         CRTDLL__dup2            = CRTDLL._dup2
    157         CRTDLL__ecvt            = CRTDLL._ecvt
    158         CRTDLL__endthread       = CRTDLL._endthread
    159         CRTDLL__eof             = CRTDLL._eof
    160         CRTDLL__errno           = CRTDLL._errno
    161         CRTDLL__except_handler2 = CRTDLL._except_handler2
    162         CRTDLL__execl           = CRTDLL._execl
    163         CRTDLL__execle          = CRTDLL._execle
    164         CRTDLL__execlp          = CRTDLL._execlp
    165         CRTDLL__execlpe         = CRTDLL._execlpe
    166         CRTDLL__execv           = CRTDLL._execv
    167         CRTDLL__execve          = CRTDLL._execve
    168         CRTDLL__execvp          = CRTDLL._execvp
    169         CRTDLL__execvpe         = CRTDLL._execvpe
    170         CRTDLL__exit            = CRTDLL._exit
    171         CRTDLL__expand          = CRTDLL._expand
    172         CRTDLL__fcloseall       = CRTDLL._fcloseall
    173         CRTDLL__fcvt            = CRTDLL._fcvt
    174         CRTDLL__fdopen          = CRTDLL._fdopen
    175         CRTDLL__fgetchar        = CRTDLL._fgetchar
    176         CRTDLL__fgetwchar       = CRTDLL._fgetwchar
    177         CRTDLL__filbuf          = CRTDLL._filbuf
    178         CRTDLL__filelength      = CRTDLL._filelength
    179         CRTDLL__fileno          = CRTDLL._fileno
    180         CRTDLL__findclose       = CRTDLL._findclose
    181         CRTDLL__findfirst       = CRTDLL._findfirst
    182         CRTDLL__findnext        = CRTDLL._findnext
    183         CRTDLL__finite          = CRTDLL._finite
    184         CRTDLL__flsbuf          = CRTDLL._flsbuf
    185         CRTDLL__flushall        = CRTDLL._flushall
    186         CRTDLL__fpclass         = CRTDLL._fpclass
    187         CRTDLL__fpieee_flt      = CRTDLL._fpieee_flt
    188         CRTDLL__fpreset         = CRTDLL._fpreset
    189         CRTDLL__fputchar        = CRTDLL._fputchar
    190         CRTDLL__fputwchar       = CRTDLL._fputwchar
    191         CRTDLL__fsopen          = CRTDLL._fsopen
    192         CRTDLL__fstat           = CRTDLL._fstat
    193         CRTDLL__ftime           = CRTDLL._ftime
    194         CRTDLL__fullpath        = CRTDLL._fullpath
    195         CRTDLL__futime          = CRTDLL._futime
    196         CRTDLL__gcvt            = CRTDLL._gcvt
    197         CRTDLL__get_osfhandle   = CRTDLL._get_osfhandle
    198         CRTDLL__getch           = CRTDLL._getch
    199         CRTDLL__getche          = CRTDLL._getche
    200         CRTDLL__getcwd          = CRTDLL._getcwd
    201         CRTDLL__getdcwd         = CRTDLL._getdcwd
    202         CRTDLL__getdiskfree     = CRTDLL._getdiskfree
    203         CRTDLL__getdrive        = CRTDLL._getdrive
    204         CRTDLL__getdrives       = CRTDLL._getdrives
    205         CRTDLL__getpid          = CRTDLL._getpid
    206         CRTDLL__getsystime      = CRTDLL._getsystime
    207         CRTDLL__getw            = CRTDLL._getw
    208         CRTDLL__getws           = CRTDLL._getws
    209         CRTDLL__global_unwind2  = CRTDLL._global_unwind2
    210         CRTDLL__heapchk         = CRTDLL._heapchk
    211         CRTDLL__heapmin         = CRTDLL._heapmin
    212         CRTDLL__heapset         = CRTDLL._heapset
    213         CRTDLL__heapwalk        = CRTDLL._heapwalk
    214         CRTDLL__hypot           = CRTDLL._hypot
    215         CRTDLL__iob             = CRTDLL._iob
    216         CRTDLL__isatty          = CRTDLL._isatty
    217         CRTDLL__isctype         = CRTDLL._isctype
    218         CRTDLL__ismbbalnum      = CRTDLL._ismbbalnum
    219         CRTDLL__ismbbalpha      = CRTDLL._ismbbalpha
    220         CRTDLL__ismbbgraph      = CRTDLL._ismbbgraph
    221         CRTDLL__ismbbkalnum     = CRTDLL._ismbbkalnum
    222         CRTDLL__ismbbkana       = CRTDLL._ismbbkana
    223         CRTDLL__ismbbkpunct     = CRTDLL._ismbbkpunct
    224         CRTDLL__ismbblead       = CRTDLL._ismbblead
    225         CRTDLL__ismbbprint      = CRTDLL._ismbbprint
    226         CRTDLL__ismbbpunct      = CRTDLL._ismbbpunct
    227         CRTDLL__ismbbtrail      = CRTDLL._ismbbtrail
    228         CRTDLL__ismbcalpha      = CRTDLL._ismbcalpha
    229         CRTDLL__ismbcdigit      = CRTDLL._ismbcdigit
    230         CRTDLL__ismbchira       = CRTDLL._ismbchira
    231         CRTDLL__ismbckata       = CRTDLL._ismbckata
    232         CRTDLL__ismbcl0         = CRTDLL._ismbcl0
    233         CRTDLL__ismbcl1         = CRTDLL._ismbcl1
    234         CRTDLL__ismbcl2         = CRTDLL._ismbcl2
    235         CRTDLL__ismbclegal      = CRTDLL._ismbclegal
    236         CRTDLL__ismbclower      = CRTDLL._ismbclower
    237         CRTDLL__ismbcprint      = CRTDLL._ismbcprint
    238         CRTDLL__ismbcspace      = CRTDLL._ismbcspace
    239         CRTDLL__ismbcsymbol     = CRTDLL._ismbcsymbol
    240         CRTDLL__ismbcupper      = CRTDLL._ismbcupper
    241         CRTDLL__ismbslead       = CRTDLL._ismbslead
    242         CRTDLL__ismbstrail      = CRTDLL._ismbstrail
    243         CRTDLL__isnan           = CRTDLL._isnan
    244         CRTDLL__j0              = CRTDLL._j0
    245         CRTDLL__j1              = CRTDLL._j1
    246         CRTDLL__jn              = CRTDLL._jn
    247         CRTDLL__kbhit           = CRTDLL._kbhit
    248         CRTDLL__lfind           = CRTDLL._lfind
    249         CRTDLL__loaddll         = CRTDLL._loaddll
    250         CRTDLL__local_unwind2   = CRTDLL._local_unwind2
    251         CRTDLL__locking         = CRTDLL._locking       
    252         CRTDLL__logb            = CRTDLL._logb
    253         CRTDLL__lrotl           = CRTDLL._lrotl
    254         CRTDLL__lrotr           = CRTDLL._lrotr
    255         CRTDLL__lsearch         = CRTDLL._lsearch
    256         CRTDLL__lseek           = CRTDLL._lseek
    257         CRTDLL__makepath        = CRTDLL._makepath
    258         CRTDLL__mbbtombc        = CRTDLL._mbbtombc
    259         CRTDLL__mbbtype         = CRTDLL._mbbtype
    260         CRTDLL__mbccpy          = CRTDLL._mbccpy
    261         CRTDLL__mbcjistojms     = CRTDLL._mbcjistojms
    262         CRTDLL__mbcjmstojis     = CRTDLL._mbcjmstojis
    263         CRTDLL__mbclen          = CRTDLL._mbclen
    264         CRTDLL__mbctohira       = CRTDLL._mbctohira
    265         CRTDLL__mbctokata       = CRTDLL._mbctokata
    266         CRTDLL__mbctolower      = CRTDLL._mbctolower
    267         CRTDLL__mbctombb        = CRTDLL._mbctombb
    268         CRTDLL__mbctoupper      = CRTDLL._mbctoupper
    269         CRTDLL__mbsbtype        = CRTDLL._mbsbtype
    270         CRTDLL__mbscat          = CRTDLL._mbscat
    271         CRTDLL__mbschr          = CRTDLL._mbschr
    272         CRTDLL__mbscmp          = CRTDLL._mbscmp
    273         CRTDLL__mbscpy          = CRTDLL._mbscpy
    274         CRTDLL__mbscspn         = CRTDLL._mbscspn
    275         CRTDLL__mbsdec          = CRTDLL._mbsdec
    276         CRTDLL__mbsdup          = CRTDLL._mbsdup
    277         CRTDLL__mbsicmp         = CRTDLL._mbsicmp
    278         CRTDLL__mbsinc          = CRTDLL._mbsinc
    279         CRTDLL__mbslen          = CRTDLL._mbslen
    280         CRTDLL__mbslwr          = CRTDLL._mbslwr
    281         CRTDLL__mbsnbcat        = CRTDLL._mbsnbcat
    282         CRTDLL__mbsnbcmp        = CRTDLL._mbsnbcmp
    283         CRTDLL__mbsnbcnt        = CRTDLL._mbsnbcnt
    284         CRTDLL__mbsnbcpy        = CRTDLL._mbsnbcpy
    285         CRTDLL__mbsnbicmp       = CRTDLL._mbsnbicmp
    286         CRTDLL__mbsnbset        = CRTDLL._mbsnbset
    287         CRTDLL__mbsncat         = CRTDLL._mbsncat
    288         CRTDLL__mbsnccnt        = CRTDLL._mbsnccnt
    289         CRTDLL__mbsncmp         = CRTDLL._mbsncmp
    290         CRTDLL__mbsncpy         = CRTDLL._mbsncpy
    291         CRTDLL__mbsnextc        = CRTDLL._mbsnextc
    292         CRTDLL__mbsnicmp        = CRTDLL._mbsnicmp
    293         CRTDLL__mbsninc         = CRTDLL._mbsninc
    294         CRTDLL__mbsnset         = CRTDLL._mbsnset
    295         CRTDLL__mbspbrk         = CRTDLL._mbspbrk
    296         CRTDLL__mbsrchr         = CRTDLL._mbsrchr
    297         CRTDLL__mbsrev          = CRTDLL._mbsrev
    298         CRTDLL__mbsset          = CRTDLL._mbsset
    299         CRTDLL__mbsspn          = CRTDLL._mbsspn
    300         CRTDLL__mbsspnp         = CRTDLL._mbsspnp
    301         CRTDLL__mbsstr          = CRTDLL._mbsstr
    302         CRTDLL__mbstok          = CRTDLL._mbstok
    303         CRTDLL__mbstrlen        = CRTDLL._mbstrlen
    304         CRTDLL__mbsupr          = CRTDLL._mbsupr
    305         CRTDLL__memccpy         = CRTDLL._memccpy
    306         CRTDLL__mkdir           = CRTDLL._mkdir
    307         CRTDLL__mktemp          = CRTDLL._mktemp
    308         CRTDLL__msize           = CRTDLL._msize
    309         CRTDLL__nextafter       = CRTDLL._nextafter
    310         CRTDLL__onexit          = CRTDLL._onexit
    311         CRTDLL__open            = CRTDLL._open
    312         CRTDLL__open_osfhandle  = CRTDLL._open_osfhandle
    313         CRTDLL__pclose          = CRTDLL._pclose
    314         CRTDLL__pipe            = CRTDLL._pipe
    315         CRTDLL__popen           = CRTDLL._popen
    316         CRTDLL__purecall        = CRTDLL._purecall
    317         CRTDLL__putch           = CRTDLL._putch
    318         CRTDLL__putenv          = CRTDLL._putenv
    319         CRTDLL__putw            = CRTDLL._putw
    320         CRTDLL__read            = CRTDLL._read
    321         CRTDLL__rmdir           = CRTDLL._rmdir
    322         CRTDLL__rmtmp           = CRTDLL._rmtmp
    323         CRTDLL__rotl            = CRTDLL._rotl
    324         CRTDLL__rotr            = CRTDLL._rotr
    325         CRTDLL__scalb           = CRTDLL._scalb
    326         CRTDLL__searchenv       = CRTDLL._searchenv
    327         CRTDLL__setjmp          = CRTDLL._setjmp
    328         CRTDLL__setmode         = CRTDLL._setmode
    329         CRTDLL__seterrormode    = CRTDLL._seterrormode
    330         CRTDLL__setsystime      = CRTDLL._setsystime
    331         CRTDLL__spawnl          = CRTDLL._spawnl
    332         CRTDLL__spawnle         = CRTDLL._spawnle
    333         CRTDLL__spawnlp         = CRTDLL._spawnlp
    334         CRTDLL__spawnlpe        = CRTDLL._spawnlpe
    335         CRTDLL__spawnv          = CRTDLL._spawnv
    336         CRTDLL__spawnve         = CRTDLL._spawnve
    337         CRTDLL__spawnvp         = CRTDLL._spawnvp
    338         CRTDLL__spawnvpe        = CRTDLL._spawnvpe
    339         CRTDLL__sleep           = CRTDLL._sleep
    340         CRTDLL__sopen           = CRTDLL._sopen
    341         CRTDLL__stat            = CRTDLL._stat
    342         CRTDLL__statusfp        = CRTDLL._statusfp
    343         CRTDLL__strdate         = CRTDLL._strdate
    344         CRTDLL__strdup          = CRTDLL._strdup
    345         CRTDLL__strerror        = CRTDLL._strerror
    346         CRTDLL__stricoll        = CRTDLL._stricoll
    347         CRTDLL__strnset         = CRTDLL._strnset
    348         CRTDLL__strrev          = CRTDLL._strrev
    349         CRTDLL__strset          = CRTDLL._strset
    350         CRTDLL__strtime         = CRTDLL._strtime
    351         CRTDLL__swab            = CRTDLL._swab
    352         CRTDLL__sys_errlist     = CRTDLL.sys_errlist
    353         CRTDLL__tell            = CRTDLL._tell
    354         CRTDLL__tempnam         = CRTDLL._tempnam
    355         CRTDLL__tolower         = CRTDLL._tolower
    356         CRTDLL__toupper         = CRTDLL._toupper
    357         CRTDLL__tzset           = CRTDLL._tzset
    358         CRTDLL__tzname          = CRTDLL._tzname
    359         CRTDLL__ungetch         = CRTDLL._ungetch
    360         CRTDLL__unlink          = CRTDLL._unlink
    361         CRTDLL__unloaddll       = CRTDLL._unloaddll
    362         CRTDLL__utime           = CRTDLL._utime
    363         CRTDLL__vsnwprintf      = CRTDLL._vsnwprintf
    364         CRTDLL__wcsdup          = CRTDLL._wcsdup
    365         CRTDLL__wcsicoll        = CRTDLL._wcsicoll
    366         CRTDLL__wcsnset         = CRTDLL._wcsnset
    367         CRTDLL__wcsrev          = CRTDLL._wcsrev
    368         CRTDLL__wcsset          = CRTDLL._wcsset
    369         CRTDLL__write           = CRTDLL._write
    370         CRTDLL__XcptFilter      = CRTDLL._XcptFilter
    371         CRTDLL__y0              = CRTDLL._y0
    372         CRTDLL__y1              = CRTDLL._y1
    373         CRTDLL__yn              = CRTDLL._yn
    374         CRTDLL_abort            = CRTDLL.abort
    375         CRTDLL_acos             = CRTDLL.acos
    376         CRTDLL_asctime          = CRTDLL.asctime
    377         CRTDLL_asin             = CRTDLL.asin
    378         CRTDLL_atan2            = CRTDLL.atan2
    379         CRTDLL_atexit           = CRTDLL.atexit
    380         CRTDLL_atof             = CRTDLL.atof
    381         CRTDLL_bsearch          = CRTDLL.bsearch
    382         CRTDLL_calloc           = CRTDLL.calloc
    383         CRTDLL_clearerr         = CRTDLL.clearerr
    384         CRTDLL_clock            = CRTDLL.clock
    385         CRTDLL_cosh             = CRTDLL.cosh
    386         CRTDLL_ctime            = CRTDLL.ctime
    387         CRTDLL_ctype            = CRTDLL.ctype
    388         CRTDLL_difftime         = CRTDLL.difftime
    389         CRTDLL_div              = CRTDLL.div
    390         CRTDLL_exit             = CRTDLL.exit
    391         CRTDLL_exp              = CRTDLL.exp
    392         CRTDLL_fclose           = CRTDLL.fclose
    393         CRTDLL_feof             = CRTDLL.feof
    394         CRTDLL_ferror           = CRTDLL.ferror
    395         CRTDLL_fflush           = CRTDLL.fflush
    396         CRTDLL_fgetc            = CRTDLL.fgetc
    397         CRTDLL_fgetpos          = CRTDLL.fgetpos
    398         CRTDLL_fgets            = CRTDLL.fgets
    399         CRTDLL_fgetwc           = CRTDLL.fgetwc
    400         CRTDLL_fmod             = CRTDLL.fmod
    401         CRTDLL_fopen            = CRTDLL.fopen
    402         CRTDLL_fprintf          = CRTDLL.fprintf
    403         CRTDLL_fputc            = CRTDLL.fputc
    404         CRTDLL_fputs            = CRTDLL.fputs
    405         CRTDLL_fputwc           = CRTDLL.fputwc
    406         CRTDLL_fread            = CRTDLL.fread
    407         CRTDLL_free             = CRTDLL.free
    408         CRTDLL_freopen          = CRTDLL.freopen
    409         CRTDLL_frexp            = CRTDLL.frexp
    410         CRTDLL_fscanf           = CRTDLL.fscanf
    411         CRTDLL_fseek            = CRTDLL.fseek
    412         CRTDLL_fsetpos          = CRTDLL.fsetpos
    413         CRTDLL_ftell            = CRTDLL.ftell
    414         CRTDLL_fwprintf         = CRTDLL.fwprintf
    415         CRTDLL_fwrite           = CRTDLL.fwrite
    416         CRTDLL_fwscanf          = CRTDLL.fwscanf
    417         CRTDLL_getc             = CRTDLL.getc
    418         CRTDLL_getchar          = CRTDLL.getchar
    419         CRTDLL_getenv           = CRTDLL.getenv
    420         CRTDLL_gets             = CRTDLL.gets
    421         CRTDLL_gmtime           = CRTDLL.gmtime
    422         CRTDLL_is_wctype        = CRTDLL.is_wctype
    423         CRTDLL_isalnum          = CRTDLL.isalnum
    424         CRTDLL_iscntrl          = CRTDLL.iscntrl
    425         CRTDLL_isgraph          = CRTDLL.isgraph
    426         CRTDLL_isleadbyte       = CRTDLL.isleadbyte
    427         CRTDLL_ispunct          = CRTDLL.ispunct
    428         CRTDLL_iswalnum         = CRTDLL.iswalnum
    429         CRTDLL_iswascii         = CRTDLL.iswascii
    430         CRTDLL_iswcntrl         = CRTDLL.iswcntrl
    431         CRTDLL_iswdigit         = CRTDLL.iswdigit
    432         CRTDLL_iswgraph         = CRTDLL.iswgraph
    433         CRTDLL_iswlower         = CRTDLL.iswlower
    434         CRTDLL_iswprint         = CRTDLL.iswprint
    435         CRTDLL_iswpunct         = CRTDLL.iswpunct
    436         CRTDLL_iswspace         = CRTDLL.iswspace
    437         CRTDLL_iswupper         = CRTDLL.iswupper
    438         CRTDLL_iswxdigit        = CRTDLL.iswxdigit
    439         CRTDLL_ldexp            = CRTDLL.ldexp
    440         CRTDLL_ldiv             = CRTDLL.ldiv
    441         CRTDLL_localeconv       = CRTDLL.localeconv
    442         CRTDLL_localtime        = CRTDLL.localtime
    443         CRTDLL_log10            = CRTDLL.log10
    444         CRTDLL_longjmp          = CRTDLL.longjmp
    445         CRTDLL_malloc           = CRTDLL.malloc
    446         CRTDLL_mbctype          = CRTDLL.mbctype
    447         CRTDLL_mblen            = CRTDLL.mblen
    448         CRTDLL_mbtowc           = CRTDLL.mbtowc
    449         CRTDLL_mktime           = CRTDLL.mktime
    450         CRTDLL_modf             = CRTDLL.modf
    451         CRTDLL_perror           = CRTDLL.perror
    452         CRTDLL_printf           = CRTDLL.printf
    453         CRTDLL_putc             = CRTDLL.putc
    454         CRTDLL_putchar          = CRTDLL.putchar
    455         CRTDLL_puts             = CRTDLL.puts
    456         CRTDLL_raise            = CRTDLL.raise
    457         CRTDLL_rand             = CRTDLL.rand
    458         CRTDLL_realloc          = CRTDLL.realloc
    459         CRTDLL_remove           = CRTDLL.remove
    460         CRTDLL_rename           = CRTDLL.rename
    461         CRTDLL_rewind           = CRTDLL.rewind
    462         CRTDLL_scanf            = CRTDLL.scanf
    463         CRTDLL_setbuf           = CRTDLL.setbuf
    464         CRTDLL_setlocale        = CRTDLL.setlocale
    465         CRTDLL_setvbuf          = CRTDLL.setvbuf
    466         CRTDLL_signal           = CRTDLL.signal
    467         CRTDLL_sinh             = CRTDLL.sinh
    468         CRTDLL_srand            = CRTDLL.srand
    469         CRTDLL_strcoll          = CRTDLL.strcoll
    470         CRTDLL_strerror         = CRTDLL.strerror
    471         CRTDLL_strftime         = CRTDLL.strftime
    472         CRTDLL_strtod           = CRTDLL.strtod
    473         CRTDLL_strtok           = CRTDLL.strtok
    474         CRTDLL_strtol           = CRTDLL.strtol
    475         CRTDLL_strtoul          = CRTDLL.strtoul
    476         CRTDLL_strxfrm          = CRTDLL.strxfrm
    477         CRTDLL_swscanf          = CRTDLL.swscanf
    478         CRTDLL_system           = CRTDLL.system
    479         CRTDLL_tanh             = CRTDLL.tanh
    480         CRTDLL_time             = CRTDLL.time
    481         CRTDLL_tmpfile          = CRTDLL.tmpfile
    482         CRTDLL_tmpnam           = CRTDLL.tmpnam
    483         CRTDLL_ungetc           = CRTDLL.ungetc
    484         CRTDLL_ungetwc          = CRTDLL.ungetwc
    485         CRTDLL_vfprintf         = CRTDLL.vfprintf
    486         CRTDLL_vfwprintf        = CRTDLL.vfwprintf
    487         CRTDLL_vprintf          = CRTDLL.vprintf
    488         CRTDLL_vswprintf        = CRTDLL.vswprintf
    489         CRTDLL_vwprintf         = CRTDLL.vwprintf
    490         CRTDLL_wcscoll          = CRTDLL.wcscoll
    491         CRTDLL_wcsftime         = CRTDLL.wcsftime
    492         CRTDLL_wcstod           = CRTDLL.wcstod
    493         CRTDLL_wcsxfrm          = CRTDLL.wcsxfrm
    494         CRTDLL_wctomb           = CRTDLL.wctomb
    495         CRTDLL_wprintf          = CRTDLL.wprintf
    496         CRTDLL_wscanf           = CRTDLL.wscanf
    4976
    4987EXPORTS
     
    54655    ?what@exception@@UBEPBDXZ   = _MSVCRT_EXP48                 @48
    54756    $I10_OUTPUT                 = _MSVCRT_EXP49                 @49
    548     _CIacos                     = CRTDLL__CIacos                @50
    549     _CIasin                     = CRTDLL__CIasin                @51
    550     _CIatan                     = CRTDLL__CIatan                @52
    551     _CIatan2                    = CRTDLL__CIatan2               @53
    552     _CIcos                      = CRTDLL__CIcos                 @54
    553     _CIcosh                     = CRTDLL__CIcosh                @55
    554     _CIexp                      = CRTDLL__CIexp                 @56
    555     _CIfmod                     = CRTDLL__CIfmod                @57
    556     _CIlog                      = CRTDLL__CIlog                 @58
    557     _CIlog10                    = CRTDLL__CIlog10               @59
    558     _CIpow                      = NTDLL__CIpow                  @60
    559     _CIsin                      = CRTDLL__CIsin                 @61
    560     _CIsinh                     = CRTDLL__CIsinh                @62
    561     _CIsqrt                     = CRTDLL__CIsqrt                @63
    562     _CItan                      = CRTDLL__CItan                 @64
    563     _CItanh                     = CRTDLL__CItanh                @65
     57    _CIacos                     = _CRTDLL__CIacos               @50
     58    _CIasin                     = _CRTDLL__CIasin               @51
     59    _CIatan                     = _CRTDLL__CIatan               @52
     60    _CIatan2                    = _CRTDLL__CIatan2              @53
     61    _CIcos                      = _CRTDLL__CIcos                        @54
     62    _CIcosh                     = _CRTDLL__CIcosh               @55
     63    _CIexp                      = _CRTDLL__CIexp                        @56
     64    _CIfmod                     = _CRTDLL__CIfmod               @57
     65    _CIlog                      = _CRTDLL__CIlog                @58
     66    _CIlog10                    = _CRTDLL__CIlog10              @59
     67    _CIpow                      = _CRTDLL__CIpow                        @60
     68    _CIsin                      = _CRTDLL__CIsin                        @61
     69    _CIsinh                     = _CRTDLL__CIsinh               @62
     70    _CIsqrt                     = _CRTDLL__CIsqrt               @63
     71    _CItan                      = _CRTDLL__CItan                @64
     72    _CItanh                     = _CRTDLL__CItanh               @65
    56473    _CxxThrowException          = _MSVCRT__CxxThrowException    @66
    56574    _EH_prolog                  = _MSVCRT__EH_prolog            @67
     
    56978    _HUGE                       = MSVCRT__HUGE                  @71
    57079;   _Strftime                   =                               @72
    571     _XcptFilter                 = CRTDLL__XcptFilter            @73
     80    _XcptFilter                 = _CRTDLL__XcptFilter           @73
    57281    __CxxFrameHandler           = _MSVCRT___CxxFrameHandler     @74
    57382;   __CxxLongjmpUnwind                                          @75
     
    57988    __argv                      = MSVCRT___argv                 @81
    58089;   __badioinfo                                                 @82
    581     __crtCompareStringA         = KERNEL32_CompareStringA       @83
    582     __crtGetLocaleInfoW         = KERNEL32_GetLocaleInfoW       @84
    583     __crtLCMapStringA           = KERNEL32_LCMapStringA         @85
    584     __dllonexit                 = CRTDLL___dllonexit            @86
    585     __doserrno                  = CRTDLL___doserrno             @87
    586     __fpecode                   = CRTDLL___fpecode              @88
     90;;;;;    __crtCompareStringA            = KERNEL32_CompareStringA       @83
     91;;;;;    __crtGetLocaleInfoW            = KERNEL32_GetLocaleInfoW       @84
     92;;;;;    __crtLCMapStringA              = KERNEL32_LCMapStringA         @85
     93    __dllonexit                 = _CRTDLL___dllonexit           @86
     94    __doserrno                  = _CRTDLL___doserrno            @87
     95    __fpecode                   = _CRTDLL___fpecode             @88
    58796    __getmainargs               = _MSVCRT___GetMainArgs         @89
    58897    __initenv                   = _MSVCRT___initenv             @90
    589     __isascii                   = CRTDLL___isascii              @91
    590     __iscsym                    = CRTDLL___iscsym               @92
    591     __iscsymf                   = CRTDLL___iscsymf              @93
     98    __isascii                   = _CRTDLL___isascii             @91
     99    __iscsym                    = _CRTDLL___iscsym              @92
     100    __iscsymf                   = _CRTDLL___iscsymf             @93
    592101;   __lc_codepage                                               @94
    593102;   __lc_collate_cp                                             @95
     
    631140;   __setlc_active                                              @131
    632141    __setusermatherr            = _MSVCRT___setusermatherr      @132
    633     __threadhandle              = CRTDLL___threadhandle         @133
    634     __threadid                  = CRTDLL___threadid             @134
    635 ;   __toascii                   = CRTDLL___toascii              @135
     142    __threadhandle              = _CRTDLL___threadhandle                @133
     143    __threadid                  = _CRTDLL___threadid            @134
     144;   __toascii                   = _CRTDLL___toascii             @135
    636145;   __unDName                                                   @136
    637146;   __unDNameEx                                                 @137
     
    640149;   __wgetmainargs                                              @140
    641150;   __winitenv                                                  @141
    642     _abnormal_termination       = CRTDLL__abnormal_termination  @142
    643     _access                     = CRTDLL__access                @143
     151    _abnormal_termination       = _CRTDLL__abnormal_termination @142
     152    _access                     = _CRTDLL__access               @143
    644153    _acmdln                     = MSVCRT__acmdln                @144
    645154;   _adj_fdiv_m16i                                              @145
     
    658167    _adjust_fdiv                = _MSVCRT__adjust_fdiv          @158
    659168    _aexit_rtn                  = _MSVCRT__aexit_rtn            @159
    660     _amsg_exit                  = CRTDLL__amsg_exit             @160
    661     _assert                     = CRTDLL__assert                @161
     169    _amsg_exit                  = _CRTDLL__amsg_exit            @160
     170    _assert                     = _CRTDLL__assert               @161
    662171;   _atodbl                                                     @162
    663172    _atoi64                     = _MSVCRT__atoi64               @163
    664173;   _atoldbl                                                    @164
    665     _beep                       = CRTDLL__beep                  @165
    666     _beginthread                = CRTDLL__beginthread           @166
     174    _beep                       = _CRTDLL__beep                 @165
     175    _beginthread                = _CRTDLL__beginthread          @166
    667176    _beginthreadex              = _MSVCRT__beginthreadex        @167
    668     _c_exit                     = CRTDLL__c_exit                @168
    669     _cabs                       = CRTDLL__cabs                  @169
    670     _cexit                      = CRTDLL__cexit                 @171
    671     _cgets                      = CRTDLL__cgets                 @172
    672     _chdir                      = CRTDLL__chdir                 @173
    673     _chdrive                    = CRTDLL__chdrive               @174
    674     _chgsign                    = CRTDLL__chgsign               @175
     177    _c_exit                     = _CRTDLL__c_exit               @168
     178    _cabs                       = _CRTDLL__cabs                 @169
     179    _cexit                      = _CRTDLL__cexit                        @171
     180    _cgets                      = _CRTDLL__cgets                        @172
     181    _chdir                      = _CRTDLL__chdir                        @173
     182    _chdrive                    = _CRTDLL__chdrive              @174
     183    _chgsign                    = _CRTDLL__chgsign              @175
    675184;   _chkesp                                                     @176
    676     _chmod                      = CRTDLL__chmod                 @177
    677     _chsize                     = CRTDLL__chsize                @178
    678     _clearfp                    = CRTDLL__clearfp               @179
    679     _close                      = CRTDLL__close                 @180
    680     _commit                     = CRTDLL__commit                @181
     185    _chmod                      = _CRTDLL__chmod                        @177
     186    _chsize                     = _CRTDLL__chsize               @178
     187    _clearfp                    = _CRTDLL__clearfp              @179
     188    _close                      = _CRTDLL__close                        @180
     189    _commit                     = _CRTDLL__commit               @181
    681190    _commode                    = MSVCRT__commode               @182
    682     _control87                  = CRTDLL__control87             @183
    683     _controlfp                  = CRTDLL__controlfp             @184
    684     _copysign                   = CRTDLL__copysign              @185
    685     _cprintf                    = CRTDLL__cprintf               @186
    686     _cputs                      = CRTDLL__cputs                 @187
    687     _creat                      = CRTDLL__creat                 @188
    688     _cscanf                     = CRTDLL__cscanf                @189
     191    _control87                  = _CRTDLL__control87            @183
     192    _controlfp                  = _CRTDLL__controlfp            @184
     193    _copysign                   = _CRTDLL__copysign             @185
     194    _cprintf                    = _CRTDLL__cprintf              @186
     195    _cputs                      = _CRTDLL__cputs                @187
     196    _creat                      = _CRTDLL__creat                        @188
     197    _cscanf                     = _CRTDLL__cscanf               @189
    689198    _ctype                      = CRTDLL_ctype                  @190
    690     _cwait                      = CRTDLL__cwait                 @191
     199    _cwait                      = _CRTDLL__cwait                        @191
    691200    _daylight                   = MSVCRT__daylight              @192
    692201;   _dstbias                                                    @193
    693     _dup                        = CRTDLL__dup                   @194
    694     _dup2                       = CRTDLL__dup2                  @195
    695     _ecvt                       = CRTDLL__ecvt                  @196
    696     _endthread                  = CRTDLL__endthread             @197
     202    _dup                        = _CRTDLL__dup                  @194
     203    _dup2                       = _CRTDLL__dup2                 @195
     204    _ecvt                       = _CRTDLL__ecvt                 @196
     205    _endthread                  = _CRTDLL__endthread            @197
    697206    _endthreadex                = _MSVCRT__endthreadex          @198
    698207    _environ                    = MSVCRT__environ               @199
    699208
    700209
    701     _eof                        = CRTDLL__eof                   @200
    702     _errno                      = CRTDLL__errno                 @201
    703     _except_handler2            = CRTDLL__except_handler2       @202
     210    _eof                        = _CRTDLL__eof                  @200
     211    _errno                      = _CRTDLL__errno                        @201
     212    _except_handler2            = _CRTDLL__except_handler2      @202
    704213    _except_handler3            = _MSVCRT__except_handler3      @203
    705     _execl                      = CRTDLL__execl                 @204
    706     _execle                     = CRTDLL__execle                @205
    707     _execlp                     = CRTDLL__execlp                @206
    708     _execlpe                    = CRTDLL__execlpe               @207
    709     _execv                      = CRTDLL__execv                 @208
    710     _execve                     = CRTDLL__execve                @209
    711     _execvp                     = CRTDLL__execvp                @210
    712     _execvpe                    = CRTDLL__execvpe               @211
    713     _exit                       = CRTDLL__exit                  @212
    714     _expand                     = CRTDLL__expand                @213
    715     _fcloseall                  = CRTDLL__fcloseall             @214
    716     _fcvt                       = CRTDLL__fcvt                  @215
    717     _fdopen                     = CRTDLL__fdopen                @216
    718     _fgetchar                   = CRTDLL__fgetchar              @217
    719     _fgetwchar                  = CRTDLL__fgetwchar             @218
    720     _filbuf                     = CRTDLL__filbuf                @219
     214    _execl                      = _CRTDLL__execl                        @204
     215    _execle                     = _CRTDLL__execle               @205
     216    _execlp                     = _CRTDLL__execlp               @206
     217    _execlpe                    = _CRTDLL__execlpe              @207
     218    _execv                      = _CRTDLL__execv                        @208
     219    _execve                     = _CRTDLL__execve               @209
     220    _execvp                     = _CRTDLL__execvp               @210
     221    _execvpe                    = _CRTDLL__execvpe              @211
     222    _exit                       = _CRTDLL__exit                 @212
     223    _expand                     = _CRTDLL__expand               @213
     224    _fcloseall                  = _CRTDLL__fcloseall            @214
     225    _fcvt                       = _CRTDLL__fcvt                 @215
     226    _fdopen                     = _CRTDLL__fdopen               @216
     227    _fgetchar                   = _CRTDLL__fgetchar             @217
     228    _fgetwchar                  = _CRTDLL__fgetwchar            @218
     229    _filbuf                     = _CRTDLL__filbuf               @219
    721230    _fileinfo                   = MSVCRT__fileinfo              @220
    722     _filelength                 = CRTDLL__filelength            @221
     231    _filelength                 = _CRTDLL__filelength           @221
    723232    _filelengthi64              = _MSVCRT__filelengthi64        @222
    724     _fileno                     = CRTDLL__fileno                @223
    725     _findclose                  = CRTDLL__findclose             @224
    726     _findfirst                  = CRTDLL__findfirst             @225
     233    _fileno                     = _CRTDLL__fileno               @223
     234    _findclose                  = _CRTDLL__findclose            @224
     235    _findfirst                  = _CRTDLL__findfirst            @225
    727236    _findfirsti64               = _MSVCRT__findfirsti64         @226
    728     _findnext                   = CRTDLL__findnext              @227
     237    _findnext                   = _CRTDLL__findnext             @227
    729238    _findnexti64                = _MSVCRT__findnexti64          @228
    730     _finite                     = CRTDLL__finite                @229
    731     _flsbuf                     = CRTDLL__flsbuf                @230
    732     _flushall                   = CRTDLL__flushall              @231
     239    _finite                     = _CRTDLL__finite               @229
     240    _flsbuf                     = _CRTDLL__flsbuf               @230
     241    _flushall                   = _CRTDLL__flushall             @231
    733242    _fmode                      = MSVCRT__fmode                 @232
    734     _fpclass                    = CRTDLL__fpclass               @233
    735     _fpieee_flt                 = CRTDLL__fpieee_flt            @234
    736     _fpreset                    = CRTDLL__fpreset               @235
    737     _fputchar                   = CRTDLL__fputchar              @236
    738     _fputwchar                  = CRTDLL__fputwchar             @237
    739     _fsopen                     = CRTDLL__fsopen                @238
    740     _fstat                      = CRTDLL__fstat                 @239
     243    _fpclass                    = _CRTDLL__fpclass              @233
     244    _fpieee_flt                 = _CRTDLL__fpieee_flt           @234
     245    _fpreset                    = _CRTDLL__fpreset              @235
     246    _fputchar                   = _CRTDLL__fputchar             @236
     247    _fputwchar                  = _CRTDLL__fputwchar            @237
     248    _fsopen                     = _CRTDLL__fsopen               @238
     249    _fstat                      = _CRTDLL__fstat                        @239
    741250    _fstati64                   = _MSVCRT__fstati64             @240
    742     _ftime                      = CRTDLL__ftime                 @241
    743     _ftol                       = NTDLL__ftol                   @242
    744     _fullpath                   = CRTDLL__fullpath              @243
    745     _futime                     = CRTDLL__futime                @244
    746     _gcvt                       = CRTDLL__gcvt                  @245
    747     _get_osfhandle              = CRTDLL__get_osfhandle         @246
     251    _ftime                      = _CRTDLL__ftime                        @241
     252    _ftol                       = _CRTDLL__ftol                 @242
     253    _fullpath                   = _CRTDLL__fullpath             @243
     254    _futime                     = _CRTDLL__futime               @244
     255    _gcvt                       = _CRTDLL__gcvt                 @245
     256    _get_osfhandle              = _CRTDLL__get_osfhandle                @246
    748257    _get_sbh_threshold          = _MSVCRT__get_sbh_threshold    @247
    749     _getch                      = CRTDLL__getch                 @248
    750     _getche                     = CRTDLL__getche                @249
    751     _getcwd                     = CRTDLL__getcwd                @250
    752     _getdcwd                    = CRTDLL__getdcwd               @251
    753     _getdiskfree                = CRTDLL__getdiskfree           @252
     258    _getch                      = _CRTDLL__getch                        @248
     259    _getche                     = _CRTDLL__getche               @249
     260    _getcwd                     = _CRTDLL__getcwd               @250
     261    _getdcwd                    = _CRTDLL__getdcwd              @251
     262    _getdiskfree                = _CRTDLL__getdiskfree          @252
    754263;   _getdllprocaddr                                             @253
    755     _getdrive                   = CRTDLL__getdrive              @254
    756     _getdrives                  = CRTDLL__getdrives             @255
     264    _getdrive                   = _CRTDLL__getdrive             @254
     265    _getdrives                  = _CRTDLL__getdrives            @255
    757266    _getmaxstdio                = _MSVCRT__getmaxstdio          @256
    758267    _getmbcp                    = _MSVCRT__getmbcp              @257
    759     _getpid                     = CRTDLL__getpid                @258
    760     _getsystime                 = CRTDLL__getsystime            @259
    761     _getw                       = CRTDLL__getw                  @260
    762     _getws                      = CRTDLL__getws                 @261
    763     _global_unwind2             = CRTDLL__global_unwind2        @262
     268    _getpid                     = _CRTDLL__getpid               @258
     269    _getsystime                 = _CRTDLL__getsystime           @259
     270    _getw                       = _CRTDLL__getw                 @260
     271;;;;;    _getws                 = _CRTDLL__getws                        @261
     272    _global_unwind2             = _CRTDLL__global_unwind2       @262
    764273    _heapadd                    = _MSVCRT__heapadd              @263
    765     _heapchk                    = CRTDLL__heapchk               @264
    766     _heapmin                    = CRTDLL__heapmin               @265
    767     _heapset                    = CRTDLL__heapset               @266
    768     _heapwalk                   = CRTDLL__heapwalk              @268
    769     _hypot                      = CRTDLL__hypot                 @269
     274    _heapchk                    = _CRTDLL__heapchk              @264
     275    _heapmin                    = _CRTDLL__heapmin              @265
     276    _heapset                    = _CRTDLL__heapset              @266
     277    _heapwalk                   = _CRTDLL__heapwalk             @268
     278    _hypot                      = _CRTDLL__hypot                        @269
    770279    _i64toa                     = _MSVCRT__i64toa               @270
    771280    _i64tow                     = _MSVCRT__i64tow               @271
     
    774283    _inpd                       = _MSVCRT__inpd                 @274
    775284    _inpw                       = _MSVCRT__inpw                 @275
    776     _iob                        = CRTDLL__iob                   @276
    777     _isatty                     = CRTDLL__isatty                @277
    778     _isctype                    = CRTDLL__isctype               @278
    779     _ismbbalnum                 = CRTDLL__ismbbalnum            @279
    780     _ismbbalpha                 = CRTDLL__ismbbalpha            @280
    781     _ismbbgraph                 = CRTDLL__ismbbgraph            @281
    782     _ismbbkalnum                = CRTDLL__ismbbkalnum           @282
    783     _ismbbkana                  = CRTDLL__ismbbkana             @283
     285    _iob                        = CRTDLL_iob                    @276
     286    _isatty                     = _CRTDLL__isatty               @277
     287    _isctype                    = _CRTDLL__isctype              @278
     288    _ismbbalnum                 = _CRTDLL__ismbbalnum           @279
     289    _ismbbalpha                 = _CRTDLL__ismbbalpha           @280
     290    _ismbbgraph                 = _CRTDLL__ismbbgraph           @281
     291    _ismbbkalnum                = _CRTDLL__ismbbkalnum          @282
     292    _ismbbkana                  = _CRTDLL__ismbbkana            @283
    784293    _ismbbkprint                = _MSVCRT__ismbbkprint          @284
    785     _ismbbkpunct                = CRTDLL__ismbbkpunct           @285
    786     _ismbblead                  = CRTDLL__ismbblead             @286
    787     _ismbbprint                 = CRTDLL__ismbbprint            @287
    788     _ismbbpunct                 = CRTDLL__ismbbpunct            @288
    789     _ismbbtrail                 = CRTDLL__ismbbtrail            @289
     294    _ismbbkpunct                = _CRTDLL__ismbbkpunct          @285
     295    _ismbblead                  = _CRTDLL__ismbblead            @286
     296    _ismbbprint                 = _CRTDLL__ismbbprint           @287
     297    _ismbbpunct                 = _CRTDLL__ismbbpunct           @288
     298    _ismbbtrail                 = _CRTDLL__ismbbtrail           @289
    790299    _ismbcalnum                 = _MSVCRT__ismbcalnum           @290
    791     _ismbcalpha                 = CRTDLL__ismbcalpha            @291
    792     _ismbcdigit                 = CRTDLL__ismbcdigit            @292
     300    _ismbcalpha                 = _CRTDLL__ismbcalpha           @291
     301    _ismbcdigit                 = _CRTDLL__ismbcdigit           @292
    793302    _ismbcgraph                 = _MSVCRT__ismbcgraph           @293
    794     _ismbchira                  = CRTDLL__ismbchira             @294
    795     _ismbckata                  = CRTDLL__ismbckata             @295
    796     _ismbcl0                    = CRTDLL__ismbcl0               @296
    797     _ismbcl1                    = CRTDLL__ismbcl1               @297
    798     _ismbcl2                    = CRTDLL__ismbcl2               @298
    799     _ismbclegal                 = CRTDLL__ismbclegal            @299
    800 
    801 
    802     _ismbclower                 = CRTDLL__ismbclower            @300
    803     _ismbcprint                 = CRTDLL__ismbcprint            @301
     303    _ismbchira                  = _CRTDLL__ismbchira            @294
     304    _ismbckata                  = _CRTDLL__ismbckata            @295
     305    _ismbcl0                    = _CRTDLL__ismbcl0              @296
     306    _ismbcl1                    = _CRTDLL__ismbcl1              @297
     307    _ismbcl2                    = _CRTDLL__ismbcl2              @298
     308    _ismbclegal                 = _CRTDLL__ismbclegal           @299
     309
     310
     311    _ismbclower                 = _CRTDLL__ismbclower           @300
     312    _ismbcprint                 = _CRTDLL__ismbcprint           @301
    804313    _ismbcpunct                 = _MSVCRT__ismbcpunct           @302
    805     _ismbcspace                 = CRTDLL__ismbcspace            @303
    806     _ismbcsymbol                = CRTDLL__ismbcsymbol           @304
    807     _ismbcupper                 = CRTDLL__ismbcupper            @305
    808     _ismbslead                  = CRTDLL__ismbslead             @306
    809     _ismbstrail                 = CRTDLL__ismbstrail            @307
    810     _isnan                      = CRTDLL__isnan                 @308
    811     _itoa                       = NTDLL__itoa                   @309
     314    _ismbcspace                 = _CRTDLL__ismbcspace           @303
     315    _ismbcsymbol                = _CRTDLL__ismbcsymbol          @304
     316    _ismbcupper                 = _CRTDLL__ismbcupper           @305
     317    _ismbslead                  = _CRTDLL__ismbslead            @306
     318    _ismbstrail                 = _CRTDLL__ismbstrail           @307
     319    _isnan                      = _CRTDLL__isnan                        @308
     320    _itoa                       = _CRTDLL__itoa                 @309
    812321    _itow                       = _MSVCRT__itow                 @310
    813     _j0                         = CRTDLL__j0                    @311
    814     _j1                         = CRTDLL__j1                    @312
    815     _jn                         = CRTDLL__jn                    @313
    816     _kbhit                      = CRTDLL__kbhit                 @314
    817     _lfind                      = CRTDLL__lfind                 @315
    818     _loaddll                    = CRTDLL__loaddll               @316
    819     _local_unwind2              = CRTDLL__local_unwind2         @317
     322    _j0                         = _CRTDLL__j0                   @311
     323    _j1                         = _CRTDLL__j1                   @312
     324    _jn                         = _CRTDLL__jn                   @313
     325    _kbhit                      = _CRTDLL__kbhit                        @314
     326    _lfind                      = _CRTDLL__lfind                        @315
     327    _loaddll                    = _CRTDLL__loaddll              @316
     328    _local_unwind2              = _CRTDLL__local_unwind2                @317
    820329;   _lock                                                       @318
    821     _locking                    = CRTDLL__locking               @319
    822     _logb                       = CRTDLL__logb                  @320
    823     _longjmpex                  = CRTDLL_longjmp                @321 ; Not correct
    824     _lrotl                      = CRTDLL__lrotl                 @322
    825     _lrotr                      = CRTDLL__lrotr                 @323
    826     _lsearch                    = CRTDLL__lsearch               @324
    827     _lseek                      = CRTDLL__lseek                 @325
     330    _locking                    = _CRTDLL__locking              @319
     331    _logb                       = _CRTDLL__logb                 @320
     332    _longjmpex                  = _CRTDLL_longjmp               @321 ; Not correct
     333    _lrotl                      = _CRTDLL__lrotl                        @322
     334    _lrotr                      = _CRTDLL__lrotr                        @323
     335    _lsearch                    = _CRTDLL__lsearch              @324
     336    _lseek                      = _CRTDLL__lseek                        @325
    828337    _lseeki64                   = _MSVCRT__lseeki64             @326
    829     _ltoa                       = NTDLL__ltoa                   @327
     338    _ltoa                       = _CRTDLL__ltoa                 @327
    830339    _ltow                       = _MSVCRT__ltow                 @328
    831     _makepath                   = CRTDLL__makepath              @329
    832     _mbbtombc                   = CRTDLL__mbbtombc              @330
    833     _mbbtype                    = CRTDLL__mbbtype               @331
     340    _makepath                   = _CRTDLL__makepath             @329
     341    _mbbtombc                   = _CRTDLL__mbbtombc             @330
     342    _mbbtype                    = _CRTDLL__mbbtype              @331
    834343;   _mbcasemap                                                  @332
    835     _mbccpy                     = CRTDLL__mbccpy                @333
    836     _mbcjistojms                = CRTDLL__mbcjistojms           @334
    837     _mbcjmstojis                = CRTDLL__mbcjmstojis           @335
    838     _mbclen                     = CRTDLL__mbclen                @336
    839     _mbctohira                  = CRTDLL__mbctohira             @337
    840     _mbctokata                  = CRTDLL__mbctokata             @338
    841     _mbctolower                 = CRTDLL__mbctolower            @339
    842     _mbctombb                   = CRTDLL__mbctombb              @340
    843     _mbctoupper                 = CRTDLL__mbctoupper            @341
     344    _mbccpy                     = _CRTDLL__mbccpy               @333
     345    _mbcjistojms                = _CRTDLL__mbcjistojms          @334
     346    _mbcjmstojis                = _CRTDLL__mbcjmstojis          @335
     347    _mbclen                     = _CRTDLL__mbclen               @336
     348    _mbctohira                  = _CRTDLL__mbctohira            @337
     349    _mbctokata                  = _CRTDLL__mbctokata            @338
     350    _mbctolower                 = _CRTDLL__mbctolower           @339
     351    _mbctombb                   = _CRTDLL__mbctombb             @340
     352    _mbctoupper                 = _CRTDLL__mbctoupper           @341
    844353    _mbctype                    = CRTDLL_mbctype                @342
    845     _mbsbtype                   = CRTDLL__mbsbtype              @343
    846     _mbscat                     = CRTDLL__mbscat                @344
    847     _mbschr                     = CRTDLL__mbschr                @345
    848     _mbscmp                     = CRTDLL__mbscmp                @346
    849     _mbscoll                    = CRTDLL__mbscmp                @347
    850     _mbscpy                     = CRTDLL__mbscpy                @348
    851     _mbscspn                    = CRTDLL__mbscspn               @349
    852     _mbsdec                     = CRTDLL__mbsdec                @350
    853     _mbsdup                     = CRTDLL__mbsdup                @351
    854     _mbsicmp                    = CRTDLL__mbsicmp               @352
    855     _mbsicoll                   = CRTDLL__mbsicmp               @353
    856     _mbsinc                     = CRTDLL__mbsinc                @354
    857     _mbslen                     = CRTDLL__mbslen                @355
    858     _mbslwr                     = CRTDLL__mbslwr                @356
    859     _mbsnbcat                   = CRTDLL__mbsnbcat              @357
    860     _mbsnbcmp                   = CRTDLL__mbsnbcmp              @358
    861     _mbsnbcnt                   = CRTDLL__mbsnbcnt              @359
    862     _mbsnbcoll                  = CRTDLL__mbsncmp               @360
    863     _mbsnbcpy                   = CRTDLL__mbsnbcpy              @361
    864     _mbsnbicmp                  = CRTDLL__mbsnbicmp             @362
    865     _mbsnbicoll                 = CRTDLL__mbsnbicmp             @363
    866     _mbsnbset                   = CRTDLL__mbsnbset              @364
    867     _mbsncat                    = CRTDLL__mbsncat               @365
    868     _mbsnccnt                   = CRTDLL__mbsnccnt              @366
    869     _mbsncmp                    = CRTDLL__mbsncmp               @367
    870     _mbsncoll                   = CRTDLL__mbsncmp               @368
    871     _mbsncpy                    = CRTDLL__mbsncpy               @369
    872     _mbsnextc                   = CRTDLL__mbsnextc              @370
    873     _mbsnicmp                   = CRTDLL__mbsnicmp              @371
    874     _mbsnicoll                  = CRTDLL__mbsnicmp              @372
    875     _mbsninc                    = CRTDLL__mbsninc               @373
    876     _mbsnset                    = CRTDLL__mbsnset               @374
    877     _mbspbrk                    = CRTDLL__mbspbrk               @375
    878     _mbsrchr                    = CRTDLL__mbsrchr               @376
    879     _mbsrev                     = CRTDLL__mbsrev                @377
    880     _mbsset                     = CRTDLL__mbsset                @378
    881     _mbsspn                     = CRTDLL__mbsspn                @379
    882     _mbsspnp                    = CRTDLL__mbsspnp               @380
    883     _mbsstr                     = CRTDLL__mbsstr                @381
    884     _mbstok                     = CRTDLL__mbstok                @382
    885     _mbstrlen                   = CRTDLL__mbstrlen              @383
    886     _mbsupr                     = CRTDLL__mbsupr                @384
    887     _memccpy                    = CRTDLL__memccpy               @385
    888     _memicmp                    = NTDLL__memicmp                @386
    889     _mkdir                      = CRTDLL__mkdir                 @387
    890     _mktemp                     = CRTDLL__mktemp                @388
    891     _msize                      = CRTDLL__msize                 @389
    892     _nextafter                  = CRTDLL__nextafter             @390
    893     _onexit                     = CRTDLL__onexit                @391
    894     _open                       = CRTDLL__open                  @392
    895     _open_osfhandle             = CRTDLL__open_osfhandle        @393
     354    _mbsbtype                   = _CRTDLL__mbsbtype             @343
     355    _mbscat                     = _CRTDLL__mbscat               @344
     356    _mbschr                     = _CRTDLL__mbschr               @345
     357    _mbscmp                     = _CRTDLL__mbscmp               @346
     358    _mbscoll                    = _CRTDLL__mbscmp               @347
     359    _mbscpy                     = _CRTDLL__mbscpy               @348
     360    _mbscspn                    = _CRTDLL__mbscspn              @349
     361    _mbsdec                     = _CRTDLL__mbsdec               @350
     362    _mbsdup                     = _CRTDLL__mbsdup               @351
     363    _mbsicmp                    = _CRTDLL__mbsicmp              @352
     364    _mbsicoll                   = _CRTDLL__mbsicmp              @353
     365    _mbsinc                     = _CRTDLL__mbsinc               @354
     366    _mbslen                     = _CRTDLL__mbslen               @355
     367    _mbslwr                     = _CRTDLL__mbslwr               @356
     368    _mbsnbcat                   = _CRTDLL__mbsnbcat             @357
     369    _mbsnbcmp                   = _CRTDLL__mbsnbcmp             @358
     370    _mbsnbcnt                   = _CRTDLL__mbsnbcnt             @359
     371    _mbsnbcoll                  = _CRTDLL__mbsncmp              @360
     372    _mbsnbcpy                   = _CRTDLL__mbsnbcpy             @361
     373    _mbsnbicmp                  = _CRTDLL__mbsnbicmp            @362
     374    _mbsnbicoll                 = _CRTDLL__mbsnbicmp            @363
     375    _mbsnbset                   = _CRTDLL__mbsnbset             @364
     376    _mbsncat                    = _CRTDLL__mbsncat              @365
     377    _mbsnccnt                   = _CRTDLL__mbsnccnt             @366
     378    _mbsncmp                    = _CRTDLL__mbsncmp              @367
     379    _mbsncoll                   = _CRTDLL__mbsncmp              @368
     380    _mbsncpy                    = _CRTDLL__mbsncpy              @369
     381    _mbsnextc                   = _CRTDLL__mbsnextc             @370
     382    _mbsnicmp                   = _CRTDLL__mbsnicmp             @371
     383    _mbsnicoll                  = _CRTDLL__mbsnicmp             @372
     384    _mbsninc                    = _CRTDLL__mbsninc              @373
     385    _mbsnset                    = _CRTDLL__mbsnset              @374
     386    _mbspbrk                    = _CRTDLL__mbspbrk              @375
     387    _mbsrchr                    = _CRTDLL__mbsrchr              @376
     388    _mbsrev                     = _CRTDLL__mbsrev               @377
     389    _mbsset                     = _CRTDLL__mbsset               @378
     390    _mbsspn                     = _CRTDLL__mbsspn               @379
     391    _mbsspnp                    = _CRTDLL__mbsspnp              @380
     392    _mbsstr                     = _CRTDLL__mbsstr               @381
     393    _mbstok                     = _CRTDLL__mbstok               @382
     394    _mbstrlen                   = _CRTDLL__mbstrlen             @383
     395    _mbsupr                     = _CRTDLL__mbsupr               @384
     396    _memccpy                    = _CRTDLL__memccpy              @385
     397    _memicmp                    = _CRTDLL__memicmp              @386
     398    _mkdir                      = _CRTDLL__mkdir                        @387
     399    _mktemp                     = _CRTDLL__mktemp               @388
     400    _msize                      = _CRTDLL__msize                        @389
     401    _nextafter                  = _CRTDLL__nextafter            @390
     402    _onexit                     = _CRTDLL__onexit               @391
     403    _open                       = _CRTDLL__open                 @392
     404    _open_osfhandle             = _CRTDLL__open_osfhandle       @393
    896405    _osver                      = MSVCRT__osver                 @394
    897406    _outp                       = _MSVCRT__outp                 @395
    898407    _outpd                      = _MSVCRT__outpd                @396
    899408    _outpw                      = _MSVCRT__outpw                @397
    900     _pclose                     = CRTDLL__pclose                @398
     409    _pclose                     = _CRTDLL__pclose               @398
    901410    _pctype                     = MSVCRT__pctype                @399
    902411
    903412
    904413    _pgmptr                     = MSVCRT__pgmptr                @400
    905     _pipe                       = CRTDLL__pipe                  @401
    906     _popen                      = CRTDLL__popen                 @402
    907     _purecall                   = CRTDLL__purecall              @403
    908     _putch                      = CRTDLL__putch                 @404
    909     _putenv                     = CRTDLL__putenv                @405
    910     _putw                       = CRTDLL__putw                  @406
     414    _pipe                       = _CRTDLL__pipe                 @401
     415    _popen                      = _CRTDLL__popen                        @402
     416    _purecall                   = _CRTDLL__purecall             @403
     417    _putch                      = _CRTDLL__putch                        @404
     418    _putenv                     = _CRTDLL__putenv               @405
     419    _putw                       = _CRTDLL__putw                 @406
    911420    _putws                      = _MSVCRT__putws                @407
    912421    _pwctype                    = MSVCRT__pwctype               @408
    913     _read                       = CRTDLL__read                  @409
    914     _rmdir                      = CRTDLL__rmdir                 @410
    915     _rmtmp                      = CRTDLL__rmtmp                 @411
    916     _rotl                       = CRTDLL__rotl                  @412
    917     _rotr                       = CRTDLL__rotr                  @413
     422    _read                       = _CRTDLL__read                 @409
     423    _rmdir                      = _CRTDLL__rmdir                        @410
     424    _rmtmp                      = _CRTDLL__rmtmp                        @411
     425    _rotl                       = _CRTDLL__rotl                 @412
     426    _rotr                       = _CRTDLL__rotr                 @413
    918427;   _safe_fdiv                                                  @414
    919428;   _safe_fdivr                                                 @415
    920429;   _safe_fprem                                                 @416
    921430;   _safe_fprem1                                                @417
    922     _scalb                      = CRTDLL__scalb                 @418
    923     _searchenv                  = CRTDLL__searchenv             @419
     431    _scalb                      = _CRTDLL__scalb                        @418
     432    _searchenv                  = _CRTDLL__searchenv            @419
    924433;   _seh_longjmp_unwind                                         @420
    925434    _set_error_mode             = _MSVCRT__set_error_mode       @421
    926435    _set_sbh_threshold          = _MSVCRT__set_sbh_threshold    @422
    927     _seterrormode               = CRTDLL__seterrormode          @423
    928     _setjmp                     = CRTDLL__setjmp                @424
    929     _setjmp3                    = CRTDLL__setjmp                @425 ; Not correct
     436    _seterrormode               = _CRTDLL__seterrormode         @423
     437    _setjmp                     = _CRTDLL__setjmp               @424
     438    _setjmp3                    = _CRTDLL__setjmp               @425 ; Not correct
    930439    _setmaxstdio                = _MSVCRT__setmaxstdio          @426
    931440    _setmbcp                    = _MSVCRT__setmbcp              @427
    932441    _setmode                                                    @428
    933     _setsystime                 = CRTDLL__setsystime            @429
    934     _sleep                      = CRTDLL__sleep                 @430
    935     _snprintf                   = NTDLL__snprintf               @431
    936     _snwprintf                  = NTDLL__snwprintf              @432
    937     _sopen                      = CRTDLL__sopen                 @433
    938     _spawnl                     = CRTDLL__spawnl                @434
    939     _spawnle                    = CRTDLL__spawnle               @435
    940     _spawnlp                    = CRTDLL__spawnlp               @436
    941     _spawnlpe                   = CRTDLL__spawnlpe              @437
    942     _spawnv                     = CRTDLL__spawnv                @438
    943     _spawnve                    = CRTDLL__spawnve               @439
    944     _spawnvp                    = CRTDLL__spawnvp               @440
    945     _spawnvpe                   = CRTDLL__spawnvpe              @441
    946     _splitpath                  = NTDLL__splitpath              @442
    947     _stat                       = CRTDLL__stat                  @443
     442    _setsystime                 = _CRTDLL__setsystime           @429
     443    _sleep                      = _CRTDLL__sleep                        @430
     444    _snprintf                   = _CRTDLL__snprintf             @431
     445    _snwprintf                  = _CRTDLL__snwprintf            @432
     446    _sopen                      = _CRTDLL__sopen                        @433
     447    _spawnl                     = _CRTDLL__spawnl               @434
     448    _spawnle                    = _CRTDLL__spawnle              @435
     449    _spawnlp                    = _CRTDLL__spawnlp              @436
     450    _spawnlpe                   = _CRTDLL__spawnlpe             @437
     451    _spawnv                     = _CRTDLL__spawnv               @438
     452    _spawnve                    = _CRTDLL__spawnve              @439
     453    _spawnvp                    = _CRTDLL__spawnvp              @440
     454    _spawnvpe                   = _CRTDLL__spawnvpe             @441
     455    _splitpath                  = _CRTDLL__splitpath            @442
     456    _stat                       = _CRTDLL__stat                 @443
    948457    _stati64                    = _MSVCRT__stati64              @444
    949     _statusfp                   = CRTDLL__statusfp              @445
    950     _strcmpi                    = NTDLL__strcmpi                @446
    951     _strdate                    = CRTDLL__strdate               @447
    952     _strdup                     = CRTDLL__strdup                @448
    953     _strerror                   = CRTDLL__strerror              @449
    954     _stricmp                    = NTDLL__stricmp                @450
    955     _stricoll                   = CRTDLL__stricoll              @451
    956     _strlwr                     = NTDLL__strlwr                 @452
     458    _statusfp                   = _CRTDLL__statusfp             @445
     459    _strcmpi                    = _CRTDLL__strcmpi              @446
     460    _strdate                    = _CRTDLL__strdate              @447
     461    _strdup                     = _CRTDLL__strdup               @448
     462    _strerror                   = _CRTDLL__strerror             @449
     463    _stricmp                    = _CRTDLL__stricmp              @450
     464    _stricoll                   = _CRTDLL__stricoll             @451
     465    _strlwr                     = _CRTDLL__strlwr                       @452
    957466    _strncoll                   = _MSVCRT__strncoll             @453
    958     _strnicmp                   = NTDLL__strnicmp               @454
     467    _strnicmp                   = _CRTDLL__strnicmp             @454
    959468    _strnicoll                  = _MSVCRT__strnicoll            @455
    960     _strnset                    = CRTDLL__strnset               @456
    961     _strrev                     = CRTDLL__strrev                @457
    962     _strset                     = CRTDLL__strset                @458
    963     _strtime                    = CRTDLL__strtime               @459
    964     _strupr                     = NTDLL__strupr                 @460
    965     _swab                       = CRTDLL__swab                  @461
    966     _sys_errlist                = CRTDLL__sys_errlist           @462
     469    _strnset                    = _CRTDLL__strnset              @456
     470    _strrev                     = _CRTDLL__strrev               @457
     471    _strset                     = _CRTDLL__strset               @458
     472    _strtime                    = _CRTDLL__strtime              @459
     473    _strupr                     = _CRTDLL__strupr                       @460
     474    _swab                       = _CRTDLL__swab                 @461
     475    _sys_errlist                = CRTDLL_sys_errlist            @462
    967476    _sys_nerr                   = MSVCRT__sys_nerr              @463
    968     _tell                       = CRTDLL__tell                  @464
     477    _tell                       = _CRTDLL__tell                 @464
    969478    _telli64                    = _MSVCRT__telli64              @465
    970     _tempnam                    = CRTDLL__tempnam               @466
     479    _tempnam                    = _CRTDLL__tempnam              @466
    971480    _timezone                   = MSVCRT__timezone              @467
    972     _tolower                    = CRTDLL__tolower               @468
    973     _toupper                    = CRTDLL__toupper               @469
    974     _tzname                     = CRTDLL__tzname                @470
    975     _tzset                      = CRTDLL__tzset                 @471
     481    _tolower                    = _CRTDLL__tolower              @468
     482    _toupper                    = _CRTDLL__toupper              @469
     483    _tzname                     = CRTDLL_tzname                 @470
     484    _tzset                      = _CRTDLL__tzset                        @471
    976485;    _ui64toa                   = _MSVCRT_ui64toa               @472
    977486;    _ui64tow                   = _MSVCRT_ui64tow               @473                            @473
    978     _ultoa                      = NTDLL__ultoa                  @474
     487    _ultoa                      = _CRTDLL__ultoa                        @474
    979488    _ultow                      = _MSVCRT__ultow                @475
    980489    _umask                      = _MSVCRT__umask                @476
    981     _ungetch                    = CRTDLL__ungetch               @477
    982     _unlink                     = CRTDLL__unlink                @478
    983     _unloaddll                  = CRTDLL__unloaddll             @479
     490    _ungetch                    = _CRTDLL__ungetch              @477
     491    _unlink                     = _CRTDLL__unlink               @478
     492    _unloaddll                  = _CRTDLL__unloaddll            @479
    984493;   _unlock                                                     @480
    985     _utime                      = CRTDLL__utime                 @481
    986     _vsnprintf                  = NTDLL__vsnprintf              @482
    987     _vsnwprintf                 = CRTDLL__vsnwprintf            @483
     494    _utime                      = _CRTDLL__utime                        @481
     495    _vsnprintf                  = _CRTDLL__vsnprintf            @482
     496    _vsnwprintf                 = _CRTDLL__vsnwprintf           @483
    988497    _waccess                    = _MSVCRT__waccess              @484
    989498    _wasctime                   = _MSVCRT__wasctime             @485
     
    992501;   _wcmdln                                                     @488   
    993502    _wcreat                     = _MSVCRT__wcreat               @489
    994     _wcsdup                     = CRTDLL__wcsdup                @490
    995     _wcsicmp                    = NTDLL__wcsicmp                @491
    996     _wcsicoll                   = CRTDLL__wcsicoll              @492
    997     _wcslwr                     = NTDLL__wcslwr                 @493
     503    _wcsdup                     = _CRTDLL__wcsdup               @490
     504    _wcsicmp                    = _CRTDLL__wcsicmp              @491
     505    _wcsicoll                   = _CRTDLL__wcsicoll             @492
     506    _wcslwr                     = _CRTDLL__wcslwr                       @493
    998507    _wcsncoll                   = _MSVCRT__wcsncoll             @494
    999     _wcsnicmp                   = NTDLL__wcsnicmp               @495
     508    _wcsnicmp                   = _CRTDLL__wcsnicmp             @495
    1000509    _wcsnicoll                  = _MSVCRT__wcsnicoll            @496
    1001     _wcsnset                    = CRTDLL__wcsnset               @497
    1002     _wcsrev                     = CRTDLL__wcsrev                @498
    1003     _wcsset                     = CRTDLL__wcsset                @499
    1004 
    1005 
    1006     _wcsupr                     = NTDLL__wcsupr                 @500
     510    _wcsnset                    = _CRTDLL__wcsnset              @497
     511    _wcsrev                     = _CRTDLL__wcsrev               @498
     512    _wcsset                     = _CRTDLL__wcsset               @499
     513
     514
     515    _wcsupr                     = _CRTDLL__wcsupr                       @500
    1007516    _wctime                     = _MSVCRT__wctime               @501
    1008517    _wenviron                                                   @502
     
    1040549    _wremove                    = _MSVCRT__wremove              @534
    1041550    _wrename                    = _MSVCRT__wrename              @535
    1042     _write                      = CRTDLL__write                 @536
     551    _write                      = _CRTDLL__write                        @536
    1043552    _wrmdir                     = _MSVCRT__wrmdir               @537
    1044553    _wsearchenv                 = _MSVCRT__wsearchenv           @538
     
    1061570    _wtempnam                   = _MSVCRT__wtempnam             @555
    1062571    _wtmpnam                    = _MSVCRT__wtmpnam              @556
    1063     _wtoi                       = NTDLL__wtoi                   @557
     572    _wtoi                       = _CRTDLL__wtoi                 @557
    1064573    _wtoi64                     = _MSVCRT__wtoi64               @558
    1065     _wtol                       = NTDLL__wtol                   @559
     574    _wtol                       = _CRTDLL__wtol                 @559
    1066575    _wunlink                    = _MSVCRT__wunlink              @560
    1067576    _wutime                     = _MSVCRT__wutime               @561
    1068     _y0                         = CRTDLL__y0                    @562
    1069     _y1                         = CRTDLL__y1                    @563
    1070     _yn                         = CRTDLL__yn                    @564
    1071     abort                       = CRTDLL_abort                  @565
    1072     abs                         = NTDLL_abs                     @566
    1073     acos                        = CRTDLL_acos                   @567
    1074     asctime                     = CRTDLL_asctime                @568
    1075     asin                        = CRTDLL_asin                   @569
    1076     atan                        = NTDLL_atan                    @570
    1077     atan2                       = CRTDLL_atan2                  @571
    1078     atexit                      = CRTDLL_atexit                 @572
    1079     atof                        = CRTDLL_atof                   @573
    1080     atoi                        = NTDLL_atoi                    @574
    1081     atol                        = NTDLL_atol                    @575
    1082     bsearch                     = CRTDLL_bsearch                @576
    1083     calloc                      = CRTDLL_calloc                 @577
    1084     ceil                        = NTDLL_ceil                    @578
    1085     clearerr                    = CRTDLL_clearerr               @579
    1086     clock                       = CRTDLL_clock                  @580
    1087     cos                         = NTDLL_cos                     @581
    1088     cosh                        = CRTDLL_cosh                   @582
    1089     ctime                       = CRTDLL_ctime                  @583
    1090     difftime                    = CRTDLL_difftime               @584
    1091     div                         = CRTDLL_div                    @585
    1092     exit                        = CRTDLL_exit                   @586
    1093     exp                         = CRTDLL_exp                    @587
    1094     fabs                        = NTDLL_fabs                    @588
    1095     fclose                      = CRTDLL_fclose                 @589
    1096     feof                        = CRTDLL_feof                   @590
    1097     ferror                      = CRTDLL_ferror                 @591
    1098     fflush                      = CRTDLL_fflush                 @592
    1099     fgetc                       = CRTDLL_fgetc                  @593
    1100     fgetpos                     = CRTDLL_fgetpos                @594
    1101     fgets                       = CRTDLL_fgets                  @595
    1102     fgetwc                      = CRTDLL_fgetwc                 @596
     577    _y0                         = _CRTDLL__y0                   @562
     578    _y1                         = _CRTDLL__y1                   @563
     579    _yn                         = _CRTDLL__yn                   @564
     580    abort                       = _CRTDLL_abort                 @565
     581    abs                         = _CRTDLL_abs                   @566
     582    acos                        = _CRTDLL_acos                  @567
     583    asctime                     = _CRTDLL_asctime               @568
     584    asin                        = _CRTDLL_asin                  @569
     585    atan                        = _CRTDLL_atan                  @570
     586    atan2                       = _CRTDLL_atan2                 @571
     587    atexit                      = _CRTDLL_atexit                        @572
     588    atof                        = _CRTDLL_atof                  @573
     589    atoi                        = _CRTDLL_atoi                  @574
     590    atol                        = _CRTDLL_atol                  @575
     591    bsearch                     = _CRTDLL_bsearch               @576
     592    calloc                      = _CRTDLL_calloc                        @577
     593    ceil                        = _CRTDLL_ceil                  @578
     594    clearerr                    = _CRTDLL_clearerr              @579
     595    clock                       = _CRTDLL_clock                 @580
     596    cos                         = _CRTDLL_cos                   @581
     597    cosh                        = _CRTDLL_cosh                  @582
     598    ctime                       = _CRTDLL_ctime                 @583
     599    difftime                    = _CRTDLL_difftime              @584
     600    div                         = _CRTDLL_div                   @585
     601    exit                        = _CRTDLL_exit                  @586
     602    exp                         = _CRTDLL_exp                   @587
     603    fabs                        = _CRTDLL_fabs                  @588
     604    fclose                      = _CRTDLL_fclose                        @589
     605    feof                        = _CRTDLL_feof                  @590
     606    ferror                      = _CRTDLL_ferror                        @591
     607    fflush                      = _CRTDLL_fflush                        @592
     608    fgetc                       = _CRTDLL_fgetc                 @593
     609    fgetpos                     = _CRTDLL_fgetpos               @594
     610    fgets                       = _CRTDLL_fgets                 @595
     611    fgetwc                      = _CRTDLL_fgetwc                        @596
    1103612    fgetws                      = _MSVCRT_fgetws                @597
    1104     floor                       = NTDLL_floor                   @598
    1105     fmod                        = CRTDLL_fmod                   @599
    1106 
    1107 
    1108     fopen                       = CRTDLL_fopen                  @600
    1109     fprintf                     = CRTDLL_fprintf                @601
    1110     fputc                       = CRTDLL_fputc                  @602
    1111     fputs                       = CRTDLL_fputs                  @603
    1112     fputwc                      = CRTDLL_fputwc                 @604
     613    floor                       = _CRTDLL_floor                 @598
     614    fmod                        = _CRTDLL_fmod                  @599
     615
     616
     617    fopen                       = _CRTDLL_fopen                 @600
     618    fprintf                     = _CRTDLL_fprintf               @601
     619    fputc                       = _CRTDLL_fputc                 @602
     620    fputs                       = _CRTDLL_fputs                 @603
     621    fputwc                      = _CRTDLL_fputwc                        @604
    1113622    fputws                      = _MSVCRT_fputws                @605
    1114     fread                       = CRTDLL_fread                  @606
    1115     free                        = CRTDLL_free                   @607
    1116     freopen                     = CRTDLL_freopen                @608
    1117     frexp                       = CRTDLL_frexp                  @609
    1118     fscanf                      = CRTDLL_fscanf                 @610
    1119     fseek                       = CRTDLL_fseek                  @611
    1120     fsetpos                     = CRTDLL_fsetpos                @612
    1121     ftell                       = CRTDLL_ftell                  @613
    1122     fwprintf                    = CRTDLL_fwprintf               @614
    1123     fwrite                      = CRTDLL_fwrite                 @615
    1124     fwscanf                     = CRTDLL_fwscanf                @616
    1125     getc                        = CRTDLL_getc                   @617
    1126     getchar                     = CRTDLL_getchar                @618
    1127     getenv                      = CRTDLL_getenv                 @619
    1128     gets                        = CRTDLL_gets                   @620
     623    fread                       = _CRTDLL_fread                 @606
     624    free                        = _CRTDLL_free                  @607
     625    freopen                     = _CRTDLL_freopen               @608
     626    frexp                       = _CRTDLL_frexp                 @609
     627    fscanf                      = _CRTDLL_fscanf                        @610
     628    fseek                       = _CRTDLL_fseek                 @611
     629    fsetpos                     = _CRTDLL_fsetpos               @612
     630    ftell                       = _CRTDLL_ftell                 @613
     631    fwprintf                    = _CRTDLL_fwprintf              @614
     632    fwrite                      = _CRTDLL_fwrite                        @615
     633    fwscanf                     = _CRTDLL_fwscanf               @616
     634    getc                        = _CRTDLL_getc                  @617
     635    getchar                     = _CRTDLL_getchar               @618
     636    getenv                      = _CRTDLL_getenv                        @619
     637    gets                        = _CRTDLL_gets                  @620
    1129638    getwc                       = _MSVCRT_getwc                 @621
    1130639    getwchar                    = _MSVCRT_getwchar              @622
    1131     gmtime                      = CRTDLL_gmtime                 @623
    1132     is_wctype                   = CRTDLL_is_wctype              @624
    1133     isalnum                     = CRTDLL_isalnum                @625
    1134     isalpha                     = NTDLL_isalpha                 @626
    1135     iscntrl                     = CRTDLL_iscntrl                @627
    1136     isdigit                     = NTDLL_isdigit                 @628
    1137     isgraph                     = CRTDLL_isgraph                @629
    1138     isleadbyte                  = CRTDLL_isleadbyte             @630
    1139     islower                     = NTDLL_islower                 @631
    1140     isprint                     = NTDLL_isprint                 @632
    1141     ispunct                     = CRTDLL_ispunct                @633
    1142     isspace                     = NTDLL_isspace                 @634
    1143     isupper                     = NTDLL_isupper                 @635
    1144     iswalnum                    = CRTDLL_iswalnum               @636
    1145     iswalpha                    = NTDLL_iswalpha                @637
    1146     iswascii                    = CRTDLL_iswascii               @638
    1147     iswcntrl                    = CRTDLL_iswcntrl               @639
    1148     iswctype                    = NTDLL_iswctype                @640
    1149     iswdigit                    = CRTDLL_iswdigit               @641
    1150     iswgraph                    = CRTDLL_iswgraph               @642
    1151     iswlower                    = CRTDLL_iswlower               @643
    1152     iswprint                    = CRTDLL_iswprint               @644
    1153     iswpunct                    = CRTDLL_iswpunct               @645
    1154     iswspace                    = CRTDLL_iswspace               @646
    1155     iswupper                    = CRTDLL_iswupper               @647
    1156     iswxdigit                   = CRTDLL_iswxdigit              @648
    1157     isxdigit                    = NTDLL_isxdigit                @649
    1158     labs                        = NTDLL_labs                    @650
    1159     ldexp                       = CRTDLL_ldexp                  @651
    1160     ldiv                        = CRTDLL_ldiv                   @652
    1161     localeconv                  = CRTDLL_localeconv             @653
    1162     localtime                   = CRTDLL_localtime              @654
    1163     log                         = NTDLL_log                     @655
    1164     log10                       = CRTDLL_log10                  @656
    1165     longjmp                     = CRTDLL_longjmp                @657
    1166     malloc                      = CRTDLL_malloc                 @658
    1167     mblen                       = CRTDLL_mblen                  @659
    1168     mbstowcs                    = NTDLL_mbstowcs                @660
    1169     mbtowc                      = CRTDLL_mbtowc                 @661
    1170     memchr                      = NTDLL_memchr                  @662
    1171     memcmp                      = NTDLL_memcmp                  @663
    1172     memcpy                      = NTDLL_memcpy                  @664
    1173     memmove                     = KERNEL32_memmove              @665
    1174     memset                      = NTDLL_memset                  @666
    1175     mktime                      = CRTDLL_mktime                 @667
    1176     modf                        = CRTDLL_modf                   @668
    1177     perror                      = CRTDLL_perror                 @669
    1178     pow                         = NTDLL_pow                     @670
    1179     printf                      = CRTDLL_printf                 @671
    1180     putc                        = CRTDLL_putc                   @672
    1181     putchar                     = CRTDLL_putchar                @673
    1182     puts                        = CRTDLL_puts                   @674
     640    gmtime                      = _CRTDLL_gmtime                        @623
     641    is_wctype                   = _CRTDLL_is_wctype             @624
     642    isalnum                     = _CRTDLL_isalnum               @625
     643    isalpha                     = _CRTDLL_isalpha                       @626
     644    iscntrl                     = _CRTDLL_iscntrl               @627
     645    isdigit                     = _CRTDLL_isdigit                       @628
     646    isgraph                     = _CRTDLL_isgraph               @629
     647    isleadbyte                  = _CRTDLL_isleadbyte            @630
     648    islower                     = _CRTDLL_islower                       @631
     649    isprint                     = _CRTDLL_isprint                       @632
     650    ispunct                     = _CRTDLL_ispunct               @633
     651    isspace                     = _CRTDLL_isspace                       @634
     652    isupper                     = _CRTDLL_isupper                       @635
     653    iswalnum                    = _CRTDLL_iswalnum              @636
     654    iswalpha                    = _CRTDLL_iswalpha              @637
     655    iswascii                    = _CRTDLL_iswascii              @638
     656    iswcntrl                    = _CRTDLL_iswcntrl              @639
     657    iswctype                    = _CRTDLL_iswctype              @640
     658    iswdigit                    = _CRTDLL_iswdigit              @641
     659    iswgraph                    = _CRTDLL_iswgraph              @642
     660    iswlower                    = _CRTDLL_iswlower              @643
     661    iswprint                    = _CRTDLL_iswprint              @644
     662    iswpunct                    = _CRTDLL_iswpunct              @645
     663    iswspace                    = _CRTDLL_iswspace              @646
     664    iswupper                    = _CRTDLL_iswupper              @647
     665    iswxdigit                   = _CRTDLL_iswxdigit             @648
     666    isxdigit                    = _CRTDLL_isxdigit              @649
     667    labs                        = _CRTDLL_labs                  @650
     668    ldexp                       = _CRTDLL_ldexp                 @651
     669    ldiv                        = _CRTDLL_ldiv                  @652
     670    localeconv                  = _CRTDLL_localeconv            @653
     671    localtime                   = _CRTDLL_localtime             @654
     672    log                         = _CRTDLL_log                   @655
     673    log10                       = _CRTDLL_log10                 @656
     674    longjmp                     = _CRTDLL_longjmp               @657
     675    malloc                      = _CRTDLL_malloc                        @658
     676    mblen                       = _CRTDLL_mblen                 @659
     677    mbstowcs                    = _CRTDLL_mbstowcs              @660
     678    mbtowc                      = _CRTDLL_mbtowc                        @661
     679    memchr                      = _CRTDLL_memchr                        @662
     680    memcmp                      = _CRTDLL_memcmp                        @663
     681    memcpy                      = _CRTDLL_memcpy                        @664
     682    memmove                     = _CRTDLL_memmove               @665
     683    memset                      = _CRTDLL_memset                        @666
     684    mktime                      = _CRTDLL_mktime                        @667
     685    modf                        = _CRTDLL_modf                  @668
     686    perror                      = _CRTDLL_perror                        @669
     687    pow                         = _CRTDLL_pow                   @670
     688    printf                      = _CRTDLL_printf                        @671
     689    putc                        = _CRTDLL_putc                  @672
     690    putchar                     = _CRTDLL_putchar               @673
     691    puts                        = _CRTDLL_puts                  @674
    1183692    putwc                       = _MSVCRT_putwc                 @675
    1184693    putwchar                    = _MSVCRT_putwchar              @676
    1185     qsort                       = NTDLL_qsort                   @677
    1186     raise                       = CRTDLL_raise                  @678
    1187     rand                        = CRTDLL_rand                   @679
    1188     realloc                     = CRTDLL_realloc                @680
    1189     remove                      = CRTDLL_remove                 @681
    1190     rename                      = CRTDLL_rename                 @682
    1191     rewind                      = CRTDLL_rewind                 @683
    1192     scanf                       = CRTDLL_scanf                  @684
    1193     setbuf                      = CRTDLL_setbuf                 @685
    1194     setlocale                   = CRTDLL_setlocale              @686
    1195     setvbuf                     = CRTDLL_setvbuf                @687
    1196     signal                      = CRTDLL_signal                 @688
    1197     sin                         = NTDLL_sin                     @689
    1198     sinh                        = CRTDLL_sinh                   @690
    1199     sprintf                     = NTDLL_sprintf                 @691
    1200     sqrt                        = NTDLL_sqrt                    @692
    1201     srand                       = CRTDLL_srand                  @693
    1202     sscanf                      = NTDLL_sscanf                  @694
    1203     strcat                      = NTDLL_strcat                  @695
    1204     strchr                      = NTDLL_strchr                  @696
    1205     strcmp                      = NTDLL_strcmp                  @697
    1206     strcoll                     = CRTDLL_strcoll                @698
    1207     strcpy                      = NTDLL_strcpy                  @699
    1208 
    1209 
    1210     strcspn                     = NTDLL_strcspn                 @700
    1211     strerror                    = CRTDLL_strerror               @701
    1212     strftime                    = CRTDLL_strftime               @702
    1213     strlen                      = NTDLL_strlen                  @703
    1214     strncat                     = NTDLL_strncat                 @704
    1215     strncmp                     = NTDLL_strncmp                 @705
    1216     strncpy                     = NTDLL_strncpy                 @706
    1217     strpbrk                     = NTDLL_strpbrk                 @707
    1218     strrchr                     = NTDLL_strrchr                 @708
    1219     strspn                      = NTDLL_strspn                  @709
    1220     strstr                      = NTDLL_strstr                  @710
    1221     strtod                      = CRTDLL_strtod                 @711
    1222     strtok                      = CRTDLL_strtok                 @712
    1223     strtol                      = CRTDLL_strtol                 @713
    1224     strtoul                     = CRTDLL_strtoul                @714
    1225     strxfrm                     = CRTDLL_strxfrm                @715
    1226     swprintf                    = NTDLL_swprintf                @716
    1227     swscanf                     = CRTDLL_swscanf                @717
    1228     system                      = CRTDLL_system                 @718
    1229     tan                         = NTDLL_tan                     @719
    1230     tanh                        = CRTDLL_tanh                   @720
    1231     time                        = CRTDLL_time                   @721
    1232     tmpfile                     = CRTDLL_tmpfile                @722
    1233     tmpnam                      = CRTDLL_tmpnam                 @723
    1234     tolower                     = NTDLL_tolower                 @724
    1235     toupper                     = NTDLL_toupper                 @725
    1236     towlower                    = NTDLL_towlower                @726
    1237     towupper                    = NTDLL_towupper                @727
    1238     ungetc                      = CRTDLL_ungetc                 @728
    1239     ungetwc                     = CRTDLL_ungetwc                @729
    1240     vfprintf                    = CRTDLL_vfprintf               @730
    1241     vfwprintf                   = CRTDLL_vfwprintf              @731
    1242     vprintf                     = CRTDLL_vprintf                @732
    1243     vsprintf                    = NTDLL_vsprintf                @733
    1244     vswprintf                   = CRTDLL_vswprintf              @734
    1245     vwprintf                    = CRTDLL_vwprintf               @735
    1246     wcscat                      = NTDLL_wcscat                  @736
    1247     wcschr                      = NTDLL_wcschr                  @737
    1248     wcscmp                      = NTDLL_wcscmp                  @738
    1249     wcscoll                     = CRTDLL_wcscoll                @739
    1250     wcscpy                      = NTDLL_wcscpy                  @740
    1251     wcscspn                     = NTDLL_wcscspn                 @741
    1252     wcsftime                    = CRTDLL_wcsftime               @742
    1253     wcslen                      = NTDLL_wcslen                  @743
    1254     wcsncat                     = NTDLL_wcsncat                 @744
    1255     wcsncmp                     = NTDLL_wcsncmp                 @745
    1256     wcsncpy                     = NTDLL_wcsncpy                 @746
    1257     wcspbrk                     = NTDLL_wcspbrk                 @747
    1258     wcsrchr                     = NTDLL_wcsrchr                 @748
    1259     wcsspn                      = NTDLL_wcsspn                  @749
    1260     wcsstr                      = NTDLL_wcsstr                  @750
    1261     wcstod                      = CRTDLL_wcstod                 @751
    1262     wcstok                      = NTDLL_wcstok                  @752
    1263     wcstol                      = NTDLL_wcstol                  @753
    1264     wcstombs                    = NTDLL_wcstombs                @754
    1265     wcstoul                     = NTDLL_wcstoul                 @755
    1266     wcsxfrm                     = CRTDLL_wcsxfrm                @756
    1267     wctomb                      = CRTDLL_wctomb                 @757
    1268     wprintf                     = CRTDLL_wprintf                @758
    1269     wscanf                      = CRTDLL_wscanf                 @759
    1270 
     694    qsort                       = _CRTDLL_qsort                 @677
     695    raise                       = _CRTDLL_raise                 @678
     696    rand                        = _CRTDLL_rand                  @679
     697    realloc                     = _CRTDLL_realloc               @680
     698    remove                      = _CRTDLL_remove                        @681
     699    rename                      = _CRTDLL_rename                        @682
     700    rewind                      = _CRTDLL_rewind                        @683
     701    scanf                       = _CRTDLL_scanf                 @684
     702    setbuf                      = _CRTDLL_setbuf                        @685
     703    setlocale                   = _CRTDLL_setlocale             @686
     704    setvbuf                     = _CRTDLL_setvbuf               @687
     705    signal                      = _CRTDLL_signal                        @688
     706    sin                         = _CRTDLL_sin                   @689
     707    sinh                        = _CRTDLL_sinh                  @690
     708    sprintf                     = _CRTDLL_sprintf                       @691
     709    sqrt                        = _CRTDLL_sqrt                  @692
     710    srand                       = _CRTDLL_srand                 @693
     711    sscanf                      = _CRTDLL_sscanf                        @694
     712    strcat                      = _CRTDLL_strcat                        @695
     713    strchr                      = _CRTDLL_strchr                        @696
     714    strcmp                      = _CRTDLL_strcmp                        @697
     715    strcoll                     = _CRTDLL_strcoll               @698
     716    strcpy                      = _CRTDLL_strcpy                        @699
     717
     718
     719    strcspn                     = _CRTDLL_strcspn                       @700
     720    strerror                    = _CRTDLL_strerror              @701
     721    strftime                    = _CRTDLL_strftime              @702
     722    strlen                      = _CRTDLL_strlen                        @703
     723    strncat                     = _CRTDLL_strncat                       @704
     724    strncmp                     = _CRTDLL_strncmp                       @705
     725    strncpy                     = _CRTDLL_strncpy                       @706
     726    strpbrk                     = _CRTDLL_strpbrk                       @707
     727    strrchr                     = _CRTDLL_strrchr                       @708
     728    strspn                      = _CRTDLL_strspn                        @709
     729    strstr                      = _CRTDLL_strstr                        @710
     730    strtod                      = _CRTDLL_strtod                        @711
     731    strtok                      = _CRTDLL_strtok                        @712
     732    strtol                      = _CRTDLL_strtol                        @713
     733    strtoul                     = _CRTDLL_strtoul               @714
     734    strxfrm                     = _CRTDLL_strxfrm               @715
     735    swprintf                    = _CRTDLL_swprintf              @716
     736    swscanf                     = _CRTDLL_swscanf               @717
     737    system                      = _CRTDLL_system                        @718
     738    tan                         = _CRTDLL_tan                   @719
     739    tanh                        = _CRTDLL_tanh                  @720
     740    time                        = _CRTDLL_time                  @721
     741    tmpfile                     = _CRTDLL_tmpfile               @722
     742    tmpnam                      = _CRTDLL_tmpnam                        @723
     743    tolower                     = _CRTDLL_tolower                       @724
     744    toupper                     = _CRTDLL_toupper                       @725
     745    towlower                    = _CRTDLL_towlower              @726
     746    towupper                    = _CRTDLL_towupper              @727
     747    ungetc                      = _CRTDLL_ungetc                @728
     748    ungetwc                     = _CRTDLL_ungetwc               @729
     749    vfprintf                    = _CRTDLL_vfprintf              @730
     750    vfwprintf                   = _CRTDLL_vfwprintf             @731
     751    vprintf                     = _CRTDLL_vprintf               @732
     752    vsprintf                    = _CRTDLL_vsprintf              @733
     753    vswprintf                   = _CRTDLL_vswprintf             @734
     754    vwprintf                    = _CRTDLL_vwprintf              @735
     755    wcscat                      = _CRTDLL_wcscat                        @736
     756    wcschr                      = _CRTDLL_wcschr                        @737
     757    wcscmp                      = _CRTDLL_wcscmp                        @738
     758    wcscoll                     = _CRTDLL_wcscoll               @739
     759    wcscpy                      = _CRTDLL_wcscpy                        @740
     760    wcscspn                     = _CRTDLL_wcscspn                       @741
     761    wcsftime                    = _CRTDLL_wcsftime              @742
     762    wcslen                      = _CRTDLL_wcslen                        @743
     763    wcsncat                     = _CRTDLL_wcsncat                       @744
     764    wcsncmp                     = _CRTDLL_wcsncmp                       @745
     765    wcsncpy                     = _CRTDLL_wcsncpy                       @746
     766    wcspbrk                     = _CRTDLL_wcspbrk                       @747
     767    wcsrchr                     = _CRTDLL_wcsrchr                       @748
     768    wcsspn                      = _CRTDLL_wcsspn                        @749
     769    wcsstr                      = _CRTDLL_wcsstr                        @750
     770    wcstod                      = _CRTDLL_wcstod                        @751
     771    wcstok                      = _CRTDLL_wcstok                        @752
     772    wcstol                      = _CRTDLL_wcstol                        @753
     773    wcstombs                    = _CRTDLL_wcstombs              @754
     774    wcstoul                     = _CRTDLL_wcstoul                       @755
     775    wcsxfrm                     = _CRTDLL_wcsxfrm               @756
     776    wctomb                      = _CRTDLL_wctomb                        @757
     777    wprintf                     = _CRTDLL_wprintf               @758
     778    wscanf                      = _CRTDLL_wscanf                        @759
     779
Note: See TracChangeset for help on using the changeset viewer.