Changeset 1103 for trunk/src


Ignore:
Timestamp:
Oct 1, 1999, 6:02:32 PM (26 years ago)
Author:
sandervl
Message:

Added stubs + forwarders

Location:
trunk/src/msvcrt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/msvcrt/msvcrt.cpp

    r1080 r1103  
    1 /* $Id: msvcrt.cpp,v 1.1 1999-09-28 13:26:06 sandervl Exp $ */
     1/* $Id: msvcrt.cpp,v 1.2 1999-10-01 16:02:32 sandervl Exp $ */
    22
    33/*
     
    1111
    1212#include <os2win.h>
     13#include <wchar.h>
    1314#include "debugtools.h"
    1415#include <debugdefs.h>
     
    6465  return FALSE;
    6566}
     67
     68
     69/*********************************************************************
     70 *                  _getws    (MSVCRT.261)
     71 */
     72wchar_t * CDECL MSVCRT__getws( wchar_t *s )
     73{
     74  dprintf(("MSVCRT: _getws not implemented.\n"));
     75  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     76  return FALSE;
     77}
     78
     79
     80/*********************************************************************
     81 *                  _ismbbkprint    (MSVCRT.284)
     82 */
     83int CDECL MSVCRT__ismbbkprint( unsigned int ch )
     84{
     85  dprintf(("MSVCRT: _ismbbkprint not implemented.\n"));
     86  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     87  return FALSE;
     88}
     89
     90
     91/*********************************************************************
     92 *                  _ismbcalnum    (MSVCRT.290)
     93 */
     94int CDECL MSVCRT__ismbcalnum( unsigned int ch )
     95{
     96  dprintf(("MSVCRT: _ismbcalnum not implemented.\n"));
     97  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     98  return FALSE;
     99}
     100
     101
     102/*********************************************************************
     103 *                  _ismbcgraph    (MSVCRT.293)
     104 */
     105int CDECL MSVCRT__ismbcgraph( unsigned int ch )
     106{
     107  dprintf(("MSVCRT: _ismbcgraph not implemented.\n"));
     108  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     109  return FALSE;
     110}
     111
     112
     113/*********************************************************************
     114 *                  _ismbcpunct    (MSVCRT.302)
     115 */
     116int CDECL MSVCRT__ismbcpunct( unsigned int ch )
     117{
     118  dprintf(("MSVCRT: _ismbcpunct not implemented.\n"));
     119  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     120  return FALSE;
     121}
     122
     123
     124/*********************************************************************
     125 *                  _putws    (MSVCRT.407)
     126 */
     127int CDECL MSVCRT__putws( const wchar_t *s )
     128{
     129  dprintf(("MSVCRT: _putws not implemented.\n"));
     130  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     131  return FALSE;
     132}
     133
     134
     135/*********************************************************************
     136 *                  _strncoll    (MSVCRT.453)
     137 */
     138int CDECL MSVCRT__strncoll( const char *s1, const char *s2, size_t n )
     139{
     140  dprintf(("MSVCRT: _strncoll not implemented.\n"));
     141  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     142  return FALSE;
     143}
     144
     145
     146/*********************************************************************
     147 *                  _strnicoll    (MSVCRT.455)
     148 */
     149int CDECL MSVCRT__strnicoll( const char *s1, const char *s2, size_t n )
     150{
     151  dprintf(("MSVCRT: _strnicoll not implemented.\n"));
     152  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     153  return FALSE;
     154}
     155
     156
     157/*********************************************************************
     158 *                  fgetws    (MSVCRT.597)
     159 */
     160wchar_t * CDECL MSVCRT_fgetws( wchar_t *s, int n, FILE *strm )
     161{
     162  dprintf(("MSVCRT: fgetws\n"));
     163  return (fgetws(s, n, strm));
     164}
     165
     166
     167/*********************************************************************
     168 *                  fputws    (MSVCRT.605)
     169 */
     170int CDECL MSVCRT_fputws( const wchar_t *s, FILE *strm )
     171{
     172  dprintf(("MSVCRT: fputws\n"));
     173  return (fputws(s, strm));
     174}
     175
     176
     177/*********************************************************************
     178 *                  getwc    (MSVCRT.621)
     179 */
     180wint_t CDECL MSVCRT_getwc( FILE * strm)
     181{
     182  dprintf(("MSVCRT: getwc\n"));
     183  return (getwc(strm));
     184}
     185
     186
     187/*********************************************************************
     188 *                  getwchar    (MSVCRT.622)
     189 */
     190wint_t CDECL MSVCRT_getwchar( void )
     191{
     192  dprintf(("MSVCRT: getwchar\n"));
     193  return (getwchar());
     194}
     195
     196
     197/*********************************************************************
     198 *                  putwc    (MSVCRT.675)
     199 */
     200wint_t CDECL MSVCRT_putwc( wint_t t, FILE * strm)
     201{
     202  dprintf(("MSVCRT: putwc not implemented.\n"));
     203  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     204  return FALSE;
     205}
     206
     207
     208/*********************************************************************
     209 *                  putwchar    (MSVCRT.676)
     210 */
     211wint_t CDECL MSVCRT_putwchar( wint_t t)
     212{
     213  dprintf(("MSVCRT: putwchar not implemented.\n"));
     214  SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
     215  return FALSE;
     216}
  • trunk/src/msvcrt/msvcrt.def

    r1080 r1103  
    1 ; $Id: msvcrt.def,v 1.1 1999-09-28 13:26:06 sandervl Exp $
     1; $Id: msvcrt.def,v 1.2 1999-10-01 16:02:32 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    88; Forwarded APIs - KERNEL32
    99        KERNEL32_memmove        = KERNEL32.memmove
     10        KERNEL32_CompareStringA = KERNEL32._CompareStringA
     11        KERNEL32_GetLocaleInfoW = KERNEL32._GetLocaleInfoW
     12        KERNEL32_LCMapStringA   = KERNEL32._LCMapStringA
    1013
    1114; Forwarded APIs - NTDLL
     
    100103
    101104; Forwarded APIs - CRTDLL
     105        CRTDLL___dllonexit      = CRTDLL.__dllonexit
     106        CRTDLL___doserrno       = CRTDLL.__doserrno
     107        CRTDLL___GetMainArgs    = CRTDLL.__GetMainArgs
    102108        CRTDLL___isascii        = CRTDLL.__isascii
    103109        CRTDLL___iscsym         = CRTDLL.__iscsym
    104110        CRTDLL___iscsymf        = CRTDLL.__iscsymf
     111        CRTDLL___threadhandle   = CRTDLL.__threadhandle
     112        CRTDLL___threadid       = CRTDLL.__threadid
     113        CRTDLL__CIacos          = CRTDLL._CIacos
     114        CRTDLL__CIasin          = CRTDLL._CIasin
     115        CRTDLL__CIatan          = CRTDLL._CIatan
     116        CRTDLL__CIatan2         = CRTDLL._CIatan2
     117        CRTDLL__CIcos           = CRTDLL._CIcos
     118        CRTDLL__CIcosh          = CRTDLL._CIcosh
     119        CRTDLL__CIexp           = CRTDLL._CIexp
     120        CRTDLL__CIfmod          = CRTDLL._CIfmod
     121        CRTDLL__CIlog           = CRTDLL._CIlog
     122        CRTDLL__CIlog10         = CRTDLL._CIlog10
     123        CRTDLL__CIsin           = CRTDLL._CIsin
     124        CRTDLL__CIsinh          = CRTDLL._CIsinh
     125        CRTDLL__CIsqrt          = CRTDLL._CIsqrt
     126        CRTDLL__CItan           = CRTDLL._CItan
     127        CRTDLL__CItanh          = CRTDLL._CItanh
    105128        CRTDLL__access          = CRTDLL._access
    106129        CRTDLL__amsg_exit       = CRTDLL._amsg_exit
    107130        CRTDLL__assert          = CRTDLL._assert
     131        CRTDLL__beep            = CRTDLL._beep
    108132        CRTDLL__beginthread     = CRTDLL._beginthread
    109133        CRTDLL__c_exit          = CRTDLL._c_exit
     134        CRTDLL__cabs            = CRTDLL._cabs
    110135        CRTDLL__cexit           = CRTDLL._cexit
     136        CRTDLL__cgets           = CRTDLL._cgets
    111137        CRTDLL__chdir           = CRTDLL._chdir
    112138        CRTDLL__chdrive         = CRTDLL._chdrive
     139        CRTDLL__chgsign         = CRTDLL._chgsign
     140        CRTDLL__chmod           = CRTDLL._chmod
     141        CRTDLL__chsize          = CRTDLL._chsize
     142        CRTDLL__clearfp         = CRTDLL._clearfp
    113143        CRTDLL__close           = CRTDLL._close
    114144        CRTDLL__control87       = CRTDLL._control87
    115145        CRTDLL__controlfp       = CRTDLL._controlfp
     146        CRTDLL__copysign        = CRTDLL._copysign
     147        CRTDLL__cprintf         = CRTDLL._cprintf
     148        CRTDLL__cputs           = CRTDLL._cputs
     149        CRTDLL__creat           = CRTDLL._creat
     150        CRTDLL__cscanf          = CRTDLL._cscanf
    116151        CRTDLL__cwait           = CRTDLL._cwait
    117152        CRTDLL__dup             = CRTDLL._dup
     
    121156        CRTDLL__errno           = CRTDLL._errno
    122157        CRTDLL__except_handler2 = CRTDLL._except_handler2
     158        CRTDLL__execl           = CRTDLL._execl
     159        CRTDLL__execle          = CRTDLL._execle
     160        CRTDLL__execlp          = CRTDLL._execlp
     161        CRTDLL__execlpe         = CRTDLL._execlpe
     162        CRTDLL__execv           = CRTDLL._execv
     163        CRTDLL__execve          = CRTDLL._execve
     164        CRTDLL__execvp          = CRTDLL._execvp
     165        CRTDLL__execvpe         = CRTDLL._execvpe
    123166        CRTDLL__exit            = CRTDLL._exit
    124167        CRTDLL__expand          = CRTDLL._expand
     168        CRTDLL__fcloseall       = CRTDLL._fcloseall
    125169        CRTDLL__fcvt            = CRTDLL._fcvt
    126170        CRTDLL__fdopen          = CRTDLL._fdopen
    127171        CRTDLL__fgetchar        = CRTDLL._fgetchar
    128172        CRTDLL__fgetwchar       = CRTDLL._fgetwchar
     173        CRTDLL__filbuf          = CRTDLL._filbuf
     174        CRTDLL__filelength      = CRTDLL._filelength
     175        CRTDLL__fileno          = CRTDLL._fileno
    129176        CRTDLL__findclose       = CRTDLL._findclose
    130177        CRTDLL__findfirst       = CRTDLL._findfirst
    131178        CRTDLL__findnext        = CRTDLL._findnext
    132179        CRTDLL__finite          = CRTDLL._finite
     180        CRTDLL__flsbuf          = CRTDLL._flsbuf
     181        CRTDLL__flushall        = CRTDLL._flushall
     182        CRTDLL__fpclass         = CRTDLL._fpclass
     183        CRTDLL__fpieee_flt      = CRTDLL._fpieee_flt
    133184        CRTDLL__fpreset         = CRTDLL._fpreset
    134185        CRTDLL__fputchar        = CRTDLL._fputchar
     
    138189        CRTDLL__ftime           = CRTDLL._ftime
    139190        CRTDLL__fullpath        = CRTDLL._fullpath
     191        CRTDLL__futime          = CRTDLL._futime
    140192        CRTDLL__gcvt            = CRTDLL._gcvt
    141193        CRTDLL__get_osfhandle   = CRTDLL._get_osfhandle
     
    146198        CRTDLL__getdiskfree     = CRTDLL._getdiskfree
    147199        CRTDLL__getdrive        = CRTDLL._getdrive
     200        CRTDLL__getdrives       = CRTDLL._getdrives
     201        CRTDLL__getpid          = CRTDLL._getpid
    148202        CRTDLL__getw            = CRTDLL._getw
     203        CRTDLL__getws           = CRTDLL._getws
    149204        CRTDLL__global_unwind2  = CRTDLL._global_unwind2
    150205        CRTDLL__heapchk         = CRTDLL._heapchk
     
    152207        CRTDLL__heapset         = CRTDLL._heapset
    153208        CRTDLL__heapwalk        = CRTDLL._heapwalk
     209        CRTDLL__hypot           = CRTDLL._hypot
    154210        CRTDLL__iob             = CRTDLL._iob
    155211        CRTDLL__isatty          = CRTDLL._isatty
     
    178234        CRTDLL__ismbcsymbol     = CRTDLL._ismbcsymbol
    179235        CRTDLL__ismbcupper      = CRTDLL._ismbcupper
     236        CRTDLL__ismbslead       = CRTDLL._ismbslead
     237        CRTDLL__ismbstrail      = CRTDLL._ismbstrail
     238        CRTDLL__isnan           = CRTDLL._isnan
     239        CRTDLL__j0              = CRTDLL._j0
     240        CRTDLL__j1              = CRTDLL._j1
     241        CRTDLL__jn              = CRTDLL._jn
     242        CRTDLL__kbhit           = CRTDLL._kbhit
     243        CRTDLL__lfind           = CRTDLL._lfind
    180244        CRTDLL__local_unwind2   = CRTDLL._local_unwind2
    181245        CRTDLL__locking         = CRTDLL._locking       
     246        CRTDLL__logb            = CRTDLL._logb
    182247        CRTDLL__lrotl           = CRTDLL._lrotl
    183248        CRTDLL__lrotr           = CRTDLL._lrotr
     249        CRTDLL__lsearch         = CRTDLL._lsearch
    184250        CRTDLL__lseek           = CRTDLL._lseek
    185251        CRTDLL__makepath        = CRTDLL._makepath
     
    229295        CRTDLL__mbsstr          = CRTDLL._mbsstr
    230296        CRTDLL__mbstok          = CRTDLL._mbstok
     297        CRTDLL__mbstrlen        = CRTDLL._mbstrlen
    231298        CRTDLL__mbsupr          = CRTDLL._mbsupr
     299        CRTDLL__memccpy         = CRTDLL._memccpy
    232300        CRTDLL__mkdir           = CRTDLL._mkdir
    233301        CRTDLL__mktemp          = CRTDLL._mktemp
    234302        CRTDLL__msize           = CRTDLL._msize
     303        CRTDLL__nextafter       = CRTDLL._nextafter
     304        CRTDLL__onexit          = CRTDLL._onexit
    235305        CRTDLL__open            = CRTDLL._open
    236306        CRTDLL__open_osfhandle  = CRTDLL._open_osfhandle
     
    238308        CRTDLL__pipe            = CRTDLL._pipe
    239309        CRTDLL__popen           = CRTDLL._popen
     310        CRTDLL__putch           = CRTDLL._putch
     311        CRTDLL__putenv          = CRTDLL._putenv
    240312        CRTDLL__putw            = CRTDLL._putw
    241313        CRTDLL__read            = CRTDLL._read
     314        CRTDLL__rmdir           = CRTDLL._rmdir
     315        CRTDLL__rmtmp           = CRTDLL._rmtmp
    242316        CRTDLL__rotl            = CRTDLL._rotl
    243317        CRTDLL__rotr            = CRTDLL._rotr
     318        CRTDLL__scalb           = CRTDLL._scalb
    244319        CRTDLL__searchenv       = CRTDLL._searchenv
    245320        CRTDLL__setjmp          = CRTDLL._setjmp
    246321        CRTDLL__setmode         = CRTDLL._setmode
     322        CRTDLL__seterrormode    = CRTDLL._seterrormode
     323        CRTDLL__spawnl          = CRTDLL._spawnl
     324        CRTDLL__spawnle         = CRTDLL._spawnle
     325        CRTDLL__spawnlp         = CRTDLL._spawnlp
     326        CRTDLL__spawnlpe        = CRTDLL._spawnlpe
     327        CRTDLL__spawnv          = CRTDLL._spawnv
     328        CRTDLL__spawnve         = CRTDLL._spawnve
     329        CRTDLL__spawnvp         = CRTDLL._spawnvp
     330        CRTDLL__spawnvpe        = CRTDLL._spawnvpe
    247331        CRTDLL__sleep           = CRTDLL._sleep
     332        CRTDLL__sopen           = CRTDLL._sopen
    248333        CRTDLL__stat            = CRTDLL._stat
     334        CRTDLL__statusfp        = CRTDLL._statusfp
    249335        CRTDLL__strdate         = CRTDLL._strdate
    250336        CRTDLL__strdup          = CRTDLL._strdup
     337        CRTDLL__strerror        = CRTDLL._strerror
    251338        CRTDLL__stricoll        = CRTDLL._stricoll
    252339        CRTDLL__strnset         = CRTDLL._strnset
     
    254341        CRTDLL__strset          = CRTDLL._strset
    255342        CRTDLL__strtime         = CRTDLL._strtime
     343        CRTDLL__swab            = CRTDLL._swab
     344        CRTDLL__tell            = CRTDLL._tell
    256345        CRTDLL__tempnam         = CRTDLL._tempnam
    257346        CRTDLL__tolower         = CRTDLL._tolower
    258347        CRTDLL__toupper         = CRTDLL._toupper
     348        CRTDLL__tzset           = CRTDLL._tzset
     349        CRTDLL__ungetch         = CRTDLL._ungetch
    259350        CRTDLL__unlink          = CRTDLL._unlink
    260351        CRTDLL__utime           = CRTDLL._utime
     
    266357        CRTDLL__wcsset          = CRTDLL._wcsset
    267358        CRTDLL__write           = CRTDLL._write
     359        CRTDLL__y0              = CRTDLL._y0
     360        CRTDLL__y1              = CRTDLL._y1
     361        CRTDLL__yn              = CRTDLL._yn
    268362        CRTDLL_abort            = CRTDLL.abort
    269363        CRTDLL_acos             = CRTDLL.acos
     
    390484
    391485EXPORTS
    392 ;   _CIacos                                                     @50
    393 ;   _CIasin                                                     @51
    394 ;   _CIatan                                                     @52
    395 ;   _CIatan2                                                    @53
    396 ;   _CIcos                                                      @54
    397 ;   _CIcosh                                                     @55
    398 ;   _CIexp                                                      @56
    399 ;   _CIfmod                                                     @57
    400 ;   _CIlog                                                      @58
    401 ;   _CIlog10                                                    @59
     486;   ??0__non_rtti_object@@QAE@ABV0@@Z                           @1
     487;   ??0__non_rtti_object@@QAE@PBD@Z                             @2
     488;   ??0bad_cast@@QAE@ABQBD@Z                                    @3
     489;   ??0bad_cast@@QAE@ABV0@@Z                                    @4
     490;   ??0bad_typeid@@QAE@ABV0@@Z                                  @5
     491;   ??0bad_typeid@@QAE@PBD@Z                                    @6
     492;   ??0exception@@QAE@ABQBD@Z                                   @7
     493;   ??0exception@@QAE@ABV0@@Z                                   @8
     494;   ??0exception@@QAE@XZ                                        @9
     495;   ??1__non_rtti_object@@UAE@XZ                                @10
     496;   ??1bad_cast@@UAE@XZ                                         @11
     497;   ??1bad_typeid@@UAE@XZ                                       @12
     498;   ??1exception@@UAE@XZ                                        @13
     499;   ??1type_info@@UAE@XZ                                        @14
     500;   ??2@YAPAXI@Z                                                @15
     501;   ??3@YAXPAX@Z                                                @16
     502;   ??4__non_rtti_object@@QAEAAV0@ABV0@@Z                       @17
     503;   ??4bad_cast@@QAEAAV0@ABV0@@Z                                @18
     504;   ??4bad_typeid@@QAEAAV0@ABV0@@Z                              @19
     505;   ??4exception@@QAEAAV0@ABV0@@Z                               @20
     506;   ??8type_info@@QBEHABV0@@Z                                   @21
     507;   ??9type_info@@QBEHABV0@@Z                                   @22
     508;   ??_7__non_rtti_object@@6B@                                  @23
     509;   ??_7bad_cast@@6B@                                           @24
     510;   ??_7bad_typeid@@6B@                                         @25
     511;   ??_7exception@@6B@                                          @26
     512;   ??_E__non_rtti_object@@UAEPAXI@Z                            @27
     513;   ??_Ebad_cast@@UAEPAXI@Z                                     @28
     514;   ??_Ebad_typeid@@UAEPAXI@Z                                   @29
     515;   ??_Eexception@@UAEPAXI@Z                                    @30
     516;   ??_G__non_rtti_object@@UAEPAXI@Z                            @31
     517;   ??_Gbad_cast@@UAEPAXI@Z                                     @32
     518;   ??_Gbad_typeid@@UAEPAXI@Z                                   @33
     519;   ??_Gexception@@UAEPAXI@Z                                    @34
     520;   ?_query_new_handler@@YAP6AHI@ZXZ                            @35
     521;   ?_query_new_mode@@YAHXZ                                     @36
     522;   ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z                       @37
     523;   ?_set_new_mode@@YAHH@Z                                      @38
     524;   ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z    @39
     525;   ?before@type_info@@QBEHABV1@@Z                              @40
     526;   ?name@type_info@@QBEPBDXZ                                   @41
     527;   ?raw_name@type_info@@QBEPBDXZ                               @42
     528;   ?set_new_handler@@YAP6AXXZP6AXXZ@Z                          @43
     529;   ?set_terminate@@YAP6AXXZP6AXXZ@Z                            @44
     530;   ?set_unexpected@@YAP6AXXZP6AXXZ@Z                           @45
     531;   ?terminate@@YAXXZ                                           @46
     532;   ?unexpected@@YAXXZ                                          @47
     533;   ?what@exception@@UBEPBDXZ                                   @48
     534;   $I10_OUTPUT                                                 @49
     535    _CIacos                     = CRTDLL__CIacos                @50
     536    _CIasin                     = CRTDLL__CIasin                @51
     537    _CIatan                     = CRTDLL__CIatan                @52
     538    _CIatan2                    = CRTDLL__CIatan2               @53
     539    _CIcos                      = CRTDLL__CIcos                 @54
     540    _CIcosh                     = CRTDLL__CIcosh                @55
     541    _CIexp                      = CRTDLL__CIexp                 @56
     542    _CIfmod                     = CRTDLL__CIfmod                @57
     543    _CIlog                      = CRTDLL__CIlog                 @58
     544    _CIlog10                    = CRTDLL__CIlog10               @59
    402545    _CIpow                      = NTDLL__CIpow                  @60
    403 ;   _CIsin                                                      @61
    404 ;   _CIsinh                                                     @62
    405 ;   _CIsqrt                                                     @63
    406 ;   _CItan                                                      @64
    407 ;   _CItanh                                                     @65
     546    _CIsin                      = CRTDLL__CIsin                 @61
     547    _CIsinh                     = CRTDLL__CIsinh                @62
     548    _CIsqrt                     = CRTDLL__CIsqrt                @63
     549    _CItan                      = CRTDLL__CItan                 @64
     550    _CItanh                     = CRTDLL__CItanh                @65
    408551    _CxxThrowException          = _MSVCRT__CxxThrowException    @66
    409552    _EH_prolog                  = _MSVCRT__EH_prolog            @67
    410        
     553;   _Getdays                                                    @68
     554;   _Getmonths                                                  @69
     555;   _Gettnames                                                  @70
     556;   _HUGE                                                       @71
     557;   _Strftime                   =                               @72
    411558    _XcptFilter                 = _MSVCRT__XcptFilter           @73
    412559    __CxxFrameHandler           = _MSVCRT___CxxFrameHandler     @74
    413 
     560;   __CxxLongjmpUnwind                                          @75
     561;   __RTCastToVoid                                              @76
     562;   __RTDynamicCast                                             @77
     563;   __RTtypeid                                                  @78
     564;   __STRINGTOLD                                                @79
     565;   __argc                                                      @80
     566;   __argv                                                      @81
     567;   __badioinfo                                                 @82
     568    __crtCompareStringA         = KERNEL32_CompareStringA       @83
     569    __crtGetLocaleInfoW         = KERNEL32_GetLocaleInfoW       @84
     570    __crtLCMapStringA           = KERNEL32_LCMapStringA         @85
     571    __dllonexit                 = CRTDLL___dllonexit            @86
     572    __doserrno                  = CRTDLL___doserrno             @87
     573;   __fpecode                                                   @88
     574    __getmainargs               = CRTDLL___GetMainArgs          @89
     575;   __initenv                                                   @90
    414576    __isascii                   = CRTDLL___isascii              @91
    415577    __iscsym                    = CRTDLL___iscsym               @92
    416578    __iscsymf                   = CRTDLL___iscsymf              @93
    417 
    418 
     579;   __lc_codepage                                               @94
     580;   __lc_collate_cp                                             @95
     581;   __lc_handle                                                 @96
     582;   __lconv_init                                                @97
     583;   __mb_cur_max                                                @98
     584;   __p___argc                                                  @99
     585
     586
     587;   __p___argv                                                  @100
     588;   __p___initenv                                               @101
     589;   __p___mb_cur_max                                            @102
     590;   __p___wargv                                                 @103
     591;   __p___winitenv                                              @104
     592;   __p__acmdln                                                 @105
     593;   __p__amblksiz                                               @106
     594;   __p__commode                                                @107
     595;   __p__daylight                                               @108
     596;   __p__dstbias                                                @109
     597;   __p__environ                                                @110
     598;   __p__fileinfo                                               @111
     599;   __p__fmode                                                  @112
     600;   __p__iob                                                    @113
     601;   __p__mbcasemap                                              @114
     602;   __p__mbctype                                                @115
     603;   __p__osver                                                  @116
     604;   __p__pctype                                                 @117
     605;   __p__pgmptr                                                 @118
     606;   __p__pwctype                                                @119
     607;   __p__timezone                                               @120
     608;   __p__tzname                                                 @121
     609;   __p__wcmdln                                                 @122
     610;   __p__wenviron                                               @123
     611;   __p__winmajor                                               @124
     612;   __p__winminor                                               @125
     613;   __p__winver                                                 @126
     614;   __p__wpgmptr                                                @127
     615;   __pioinfo                                                   @128
     616;   __pxcptinfoptrs                                             @129
     617;   __set_app_type                                              @130
     618;   __setlc_active                                              @131
     619;   __setusermatherr                                            @132
     620    __threadhandle              = CRTDLL___threadhandle         @133
     621    __threadid                  = CRTDLL___threadid             @134
     622;   __toascii                                                   @135
     623;   __unDName                                                   @136
     624;   __unDNameEx                                                 @137
     625;   __unguarded_readlc_active                                   @138
     626;   __wargv                                                     @139
     627;   __wgetmainargs                                              @140
     628;   __winitenv                                                  @141
     629;   _abnormal_termination                                       @142
    419630    _access                     = CRTDLL__access                @143
    420 
     631;   _acmdln                                                     @144
     632;   _adj_fdiv_m16i                                              @145
     633;   _adj_fdiv_m32                                               @146
     634;   _adj_fdiv_m32i                                              @147
     635;   _adj_fdiv_m64                                               @148
     636;   _adj_fdiv_r                                                 @149
     637;   _adj_fdivr_m16i                                             @150
     638;   _adj_fdivr_m32                                              @151
     639;   _adj_fdivr_m32i                                             @152
     640;   _adj_fdivr_m64                                              @153
     641;   _adj_fpatan                                                 @154
     642;   _adj_fprem                                                  @155
     643;   _adj_fprem1                                                 @156
     644;   _adj_fptan                                                  @157
     645;   _adjust_fdiv                                                @158
     646;   _aexit_rtn                                                  @159
    421647    _amsg_exit                  = CRTDLL__amsg_exit             @160
    422648    _assert                     = CRTDLL__assert                @161
    423 
    424 ;   _beep                                                       @165
     649;   _atodbl                                                     @162
     650;   _atoi64                                                     @163
     651;   _atoldbl                                                    @164
     652    _beep                       = CRTDLL__beep                  @165
    425653    _beginthread                = CRTDLL__beginthread           @166
    426 
     654;   _beginthreadex                                              @167
    427655    _c_exit                     = CRTDLL__c_exit                @168
    428 ;   _cabs                                                       @169
     656    _cabs                       = CRTDLL__cabs                  @169
    429657    _cexit                      = CRTDLL__cexit                 @171
    430 ;   _cgets                                                      @172
     658    _cgets                      = CRTDLL__cgets                 @172
    431659    _chdir                      = CRTDLL__chdir                 @173
    432660    _chdrive                    = CRTDLL__chdrive               @174
    433 ;   _chgsign                                                    @175
    434 
    435 ;   _chmod                                                      @177
    436 ;   _chsize                                                     @178
    437 ;   _clearfp                                                    @179
     661    _chgsign                    = CRTDLL__chgsign               @175
     662;   _chkesp                                                     @176
     663    _chmod                      = CRTDLL__chmod                 @177
     664    _chsize                     = CRTDLL__chsize                @178
     665    _clearfp                    = CRTDLL__clearfp               @179
    438666    _close                      = CRTDLL__close                 @180
    439667;   _commit                                                     @181
    440 
     668;   _commode                                                    @182
    441669    _control87                  = CRTDLL__control87             @183
    442670    _controlfp                  = CRTDLL__controlfp             @184
    443 ;   _copysign                                                   @185
    444 ;   _cprintf                                                    @186
    445 ;   _cputs                                                      @187
    446 ;   _creat                                                      @188
    447 ;   _cscanf                                                     @189
     671    _copysign                   = CRTDLL__copysign              @185
     672    _cprintf                    = CRTDLL__cprintf               @186
     673    _cputs                      = CRTDLL__cputs                 @187
     674    _creat                      = CRTDLL__creat                 @188
     675    _cscanf                     = CRTDLL__cscanf                @189
    448676;   _ctype                                                      @190
    449677    _cwait                      = CRTDLL__cwait                 @191
    450678;   _daylight_dll                                               @192
    451 
     679;   _dstbias                                                    @193
    452680    _dup                        = CRTDLL__dup                   @194
    453681    _dup2                       = CRTDLL__dup2                  @195
    454682    _ecvt                       = CRTDLL__ecvt                  @196
    455683    _endthread                  = CRTDLL__endthread             @197
     684;   _endthreadex                                                @198
     685;   _environ                                                    @199
     686
    456687
    457688;   _eof                                                        @200
    458689    _errno                      = CRTDLL__errno                 @201
    459690    _except_handler2            = CRTDLL__except_handler2       @202
    460 
    461 ;   _execl                                                      @204
    462 ;   _execle                                                     @205
    463 ;   _execlp                                                     @206
    464 ;   _execlpe                                                    @207
    465 ;   _execv                                                      @208
    466 ;   _execve                                                     @209
    467 ;   _execvp                                                     @210
    468 ;   _execvpe                                                    @211
     691;   _except_handler3                                            @203
     692    _execl                      = CRTDLL__execl                 @204
     693    _execle                     = CRTDLL__execle                @205
     694    _execlp                     = CRTDLL__execlp                @206
     695    _execlpe                    = CRTDLL__execlpe               @207
     696    _execv                      = CRTDLL__execv                 @208
     697    _execve                     = CRTDLL__execve                @209
     698    _execvp                     = CRTDLL__execvp                @210
     699    _execvpe                    = CRTDLL__execvpe               @211
    469700    _exit                       = CRTDLL__exit                  @212
    470701    _expand                     = CRTDLL__expand                @213
    471 ;   _fcloseall                                                  @214
     702    _fcloseall                  = CRTDLL__fcloseall             @214
    472703    _fcvt                       = CRTDLL__fcvt                  @215
    473704    _fdopen                     = CRTDLL__fdopen                @216
    474705    _fgetchar                   = CRTDLL__fgetchar              @217
    475706    _fgetwchar                  = CRTDLL__fgetwchar             @218
    476 ;   _filbuf                                                     @219
    477 
    478 ;   _filelength                                                 @221
    479 
    480 ;   _fileno                                                     @223
     707    _filbuf                     = CRTDLL__filbuf                @219
     708;   _fileinfo                                                   @220
     709    _filelength                 = CRTDLL__filelength            @221
     710;   _filelengthi64                                              @222
     711    _fileno                     = CRTDLL__fileno                @223
    481712    _findclose                  = CRTDLL__findclose             @224
    482713    _findfirst                  = CRTDLL__findfirst             @225
    483 
     714;   _findfirsti64                                               @226
    484715    _findnext                   = CRTDLL__findnext              @227
    485 
     716;   _findnexti64                                                @228
    486717    _finite                     = CRTDLL__finite                @229
    487 ;   _flsbuf                                                     @230
    488 ;   _flushall                                                   @231
    489 
    490 ;   _fpclass                                                    @233
    491 ;   _fpieee_flt                                                 @234
     718    _flsbuf                     = CRTDLL__flsbuf                @230
     719    _flushall                   = CRTDLL__flushall              @231
     720;   _fmode                                                      @232
     721    _fpclass                    = CRTDLL__fpclass               @233
     722    _fpieee_flt                 = CRTDLL__fpieee_flt            @234
    492723    _fpreset                    = CRTDLL__fpreset               @235
    493724    _fputchar                   = CRTDLL__fputchar              @236
     
    495726    _fsopen                     = CRTDLL__fsopen                @238
    496727    _fstat                      = CRTDLL__fstat                 @239
    497 
     728;   _fstati64                                                   @240
    498729    _ftime                      = CRTDLL__ftime                 @241
    499730    _ftol                       = NTDLL__ftol                   @242
    500731    _fullpath                   = CRTDLL__fullpath              @243
    501 ;   _futime                                                     @244
     732    _futime                     = CRTDLL__futime                @244
    502733    _gcvt                       = CRTDLL__gcvt                  @245
    503734    _get_osfhandle              = CRTDLL__get_osfhandle         @246
    504 
     735;   _get_sbh_threshold                                          @247
    505736    _getch                      = CRTDLL__getch                 @248
    506737    _getche                     = CRTDLL__getche                @249
     
    510741;   _getdllprocaddr                                             @253
    511742    _getdrive                   = CRTDLL__getdrive              @254
    512 ;   _getdrives                                                  @255
    513 
    514 ;   _getpid                                                     @258
     743    _getdrives                  = CRTDLL__getdrives             @255
     744;   _getmaxstdio                                                @256
     745;   _getmbcp                                                    @257
     746    _getpid                     = CRTDLL__getpid                @258
    515747;   _getsystime                                                 @259
    516748    _getw                       = CRTDLL__getw                  @260
    517 
    518     _global_unwind2             = CRTDLL__global_unwind2        @261
    519 
     749    _getws                      = CRTDLL__getws                 @261
     750    _global_unwind2             = CRTDLL__global_unwind2        @262
     751;   _heapadd                                                    @263
    520752    _heapchk                    = CRTDLL__heapchk               @264
    521753    _heapmin                    = CRTDLL__heapmin               @265
    522754    _heapset                    = CRTDLL__heapset               @266
    523755    _heapwalk                   = CRTDLL__heapwalk              @268
    524 ;   _hypot                                                      @269
    525 
     756    _hypot                      = CRTDLL__hypot                 @269
     757;   _i64toa                                                     @270
     758;   _i64tow                                                     @271
    526759    _initterm                   = _DLL_InitTerm                 @272
    527 
     760;   _inp                                                        @273
     761;   _inpd                                                       @274
     762;   _inpw                                                       @275
    528763    _iob                        = CRTDLL__iob                   @276
    529764    _isatty                     = CRTDLL__isatty                @277
     
    534769    _ismbbkalnum                = CRTDLL__ismbbkalnum           @282
    535770    _ismbbkana                  = CRTDLL__ismbbkana             @283
    536 
     771    _ismbbkprint                = _MSVCRT__ismbbkprint          @284
    537772    _ismbbkpunct                = CRTDLL__ismbbkpunct           @285
    538773    _ismbblead                  = CRTDLL__ismbblead             @286
     
    540775    _ismbbpunct                 = CRTDLL__ismbbpunct            @288
    541776    _ismbbtrail                 = CRTDLL__ismbbtrail            @289
    542 
     777    _ismbcalnum                 = _MSVCRT__ismbcalnum           @290
    543778    _ismbcalpha                 = CRTDLL__ismbcalpha            @291
    544779    _ismbcdigit                 = CRTDLL__ismbcdigit            @292
    545 
     780    _ismbcgraph                 = _MSVCRT__ismbcgraph           @293
    546781    _ismbchira                  = CRTDLL__ismbchira             @294
    547782    _ismbckata                  = CRTDLL__ismbckata             @295
     
    554789    _ismbclower                 = CRTDLL__ismbclower            @300
    555790    _ismbcprint                 = CRTDLL__ismbcprint            @301
    556 
     791    _ismbcpunct                 = _MSVCRT__ismbcpunct           @302
    557792    _ismbcspace                 = CRTDLL__ismbcspace            @303
    558793    _ismbcsymbol                = CRTDLL__ismbcsymbol           @304
    559794    _ismbcupper                 = CRTDLL__ismbcupper            @305
    560 ;   _ismbslead                                                  @306
    561 ;   _ismbstrail                                                 @307
    562 ;   _isnan                                                      @308
     795    _ismbslead                  = CRTDLL__ismbslead             @306
     796    _ismbstrail                 = CRTDLL__ismbstrail            @307
     797    _isnan                      = CRTDLL__isnan                 @308
    563798    _itoa                       = NTDLL__itoa                   @309
    564 
    565 ;   _j0                                                         @311
    566 ;   _j1                                                         @312
    567 ;   _jn                                                         @313
    568 ;   _kbhit                                                      @314
    569 ;   _lfind                                                      @315
     799;   _itow                                                       @310
     800    _j0                         = CRTDLL__j0                    @311
     801    _j1                         = CRTDLL__j1                    @312
     802    _jn                         = CRTDLL__jn                    @313
     803    _kbhit                      = CRTDLL__kbhit                 @314
     804    _lfind                      = CRTDLL__lfind                 @315
    570805;   _loaddll                                                    @316
    571806    _local_unwind2              = CRTDLL__local_unwind2         @317
    572 
     807;   _lock                                                       @318
    573808    _locking                    = CRTDLL__locking               @319
    574 ;   _logb                                                       @320
    575 
     809    _logb                       = CRTDLL__logb                  @320
     810;   _longjmpex                                                  @321
    576811    _lrotl                      = CRTDLL__lrotl                 @322
    577812    _lrotr                      = CRTDLL__lrotr                 @323
    578 ;   _lsearch                                                    @324
     813    _lsearch                    = CRTDLL__lsearch               @324
    579814    _lseek                      = CRTDLL__lseek                 @325
    580 
     815;   _lseeki64                                                   @326
    581816    _ltoa                       = NTDLL__ltoa                   @327
    582 
     817;   _ltow                                                       @328
    583818    _makepath                   = CRTDLL__makepath              @329
    584819    _mbbtombc                   = CRTDLL__mbbtombc              @330
    585820    _mbbtype                    = CRTDLL__mbbtype               @331
    586 
     821;   _mbcasemap                                                  @332
    587822    _mbccpy                     = CRTDLL__mbccpy                @333
    588823    _mbcjistojms                = CRTDLL__mbcjistojms           @334
     
    599834    _mbschr                     = CRTDLL__mbschr                @345
    600835    _mbscmp                     = CRTDLL__mbscmp                @346
    601 
     836    _mbscoll                    = CRTDLL__mbscmp                @347
    602837    _mbscpy                     = CRTDLL__mbscpy                @348
    603838    _mbscspn                    = CRTDLL__mbscspn               @349
     
    605840    _mbsdup                     = CRTDLL__mbsdup                @351
    606841    _mbsicmp                    = CRTDLL__mbsicmp               @352
    607 
     842    _mbsicoll                   = CRTDLL__mbsicmp               @353
    608843    _mbsinc                     = CRTDLL__mbsinc                @354
    609844    _mbslen                     = CRTDLL__mbslen                @355
     
    612847    _mbsnbcmp                   = CRTDLL__mbsnbcmp              @358
    613848    _mbsnbcnt                   = CRTDLL__mbsnbcnt              @359
    614 
     849    _mbsnbcoll                  = CRTDLL__mbsncmp               @360
    615850    _mbsnbcpy                   = CRTDLL__mbsnbcpy              @361
    616851    _mbsnbicmp                  = CRTDLL__mbsnbicmp             @362
    617 
     852    _mbsnbicoll                 = CRTDLL__mbsnbicmp             @363
    618853    _mbsnbset                   = CRTDLL__mbsnbset              @364
    619854    _mbsncat                    = CRTDLL__mbsncat               @365
    620855    _mbsnccnt                   = CRTDLL__mbsnccnt              @366
    621856    _mbsncmp                    = CRTDLL__mbsncmp               @367
    622  
     857    _mbsncoll                   = CRTDLL__mbsncmp               @368
    623858    _mbsncpy                    = CRTDLL__mbsncpy               @369
    624859    _mbsnextc                   = CRTDLL__mbsnextc              @370
    625860    _mbsnicmp                   = CRTDLL__mbsnicmp              @371
    626 
     861    _mbsnicoll                  = CRTDLL__mbsnicmp              @372
    627862    _mbsninc                    = CRTDLL__mbsninc               @373
    628863    _mbsnset                    = CRTDLL__mbsnset               @374
     
    635870    _mbsstr                     = CRTDLL__mbsstr                @381
    636871    _mbstok                     = CRTDLL__mbstok                @382
    637 ;   _mbstrlen                                                   @383
     872    _mbstrlen                   = CRTDLL__mbstrlen              @383
    638873    _mbsupr                     = CRTDLL__mbsupr                @384
    639 ;   _memccpy                                                    @385
     874    _memccpy                    = CRTDLL__memccpy               @385
    640875    _memicmp                    = NTDLL__memicmp                @386
    641876    _mkdir                      = CRTDLL__mkdir                 @387
    642877    _mktemp                     = CRTDLL__mktemp                @388
    643878    _msize                      = CRTDLL__msize                 @389
    644 ;   _nextafter                                                  @390
    645 ;   _onexit                                                     @391
     879    _nextafter                  = CRTDLL__nextafter             @390
     880    _onexit                     = CRTDLL__onexit                @391
    646881    _open                       = CRTDLL__open                  @392
    647882    _open_osfhandle             = CRTDLL__open_osfhandle        @393
    648 
     883;   _osver                                                      @394
     884;   _outp                                                       @395
     885;   _outpd                                                      @396
     886;   _outpw                                                      @397
    649887    _pclose                     = CRTDLL__pclose                @398
    650 
    651 
     888;   _pctype                                                     @399
     889
     890
     891;   _pgmptr                                                     @400
    652892    _pipe                       = CRTDLL__pipe                  @401
    653893    _popen                      = CRTDLL__popen                 @402
    654894;   _purecall                                                   @403
    655 ;   _putch                                                      @404
    656 ;   _putenv                                                     @405
     895    _putch                      = CRTDLL__putch                 @404
     896    _putenv                     = CRTDLL__putenv                @405
    657897    _putw                       = CRTDLL__putw                  @406
    658 
     898    _putws                      = _MSVCRT__putws                @407
     899;   _pwctype                                                    @408
    659900    _read                       = CRTDLL__read                  @409
    660 ;   _rmdir                                                      @410
    661 ;   _rmtmp                                                      @411
     901    _rmdir                      = CRTDLL__rmdir                 @410
     902    _rmtmp                      = CRTDLL__rmtmp                 @411
    662903    _rotl                       = CRTDLL__rotl                  @412
    663904    _rotr                       = CRTDLL__rotr                  @413
    664 
    665 ;   _scalb                                                      @418
     905;   _safe_fdiv                                                  @414
     906;   _safe_fdivr                                                 @415
     907;   _safe_fprem                                                 @416
     908;   _safe_fprem1                                                @417
     909    _scalb                      = CRTDLL__scalb                 @418
    666910    _searchenv                  = CRTDLL__searchenv             @419
    667 
    668 ;   _seterrormode                                               @423
     911;   _seh_longjmp_unwind                                         @420
     912;   _set_error_mode                                             @421
     913;   _set_sbh_threshold                                          @422
     914    _seterrormode               = CRTDLL__seterrormode          @423
    669915    _setjmp                     = CRTDLL__setjmp                @424
    670 
     916;   _setjmp3                                                    @425
     917;   _setmaxstdio                                                @426
     918;   _setmbcp                                                    @427
    671919    _setmode                                                    @428
    672920;   _setsystime                                                 @429
     
    674922    _snprintf                   = NTDLL__snprintf               @431
    675923    _snwprintf                  = NTDLL__snwprintf              @432
    676 ;   _sopen                                                      @433
    677 ;   _spawnl                                                     @434
    678 ;   _spawnle                                                    @435
    679 ;   _spawnlp                                                    @436
    680 ;   _spawnlpe                                                   @437
    681 ;   _spawnv                                                     @438
    682 ;   _spawnve                                                    @439
    683 ;   _spawnvp                                                    @440
    684 ;   _spawnvpe                                                   @441
     924    _sopen                      = CRTDLL__sopen                 @433
     925    _spawnl                     = CRTDLL__spawnl                @434
     926    _spawnle                    = CRTDLL__spawnle               @435
     927    _spawnlp                    = CRTDLL__spawnlp               @436
     928    _spawnlpe                   = CRTDLL__spawnlpe              @437
     929    _spawnv                     = CRTDLL__spawnv                @438
     930    _spawnve                    = CRTDLL__spawnve               @439
     931    _spawnvp                    = CRTDLL__spawnvp               @440
     932    _spawnvpe                   = CRTDLL__spawnvpe              @441
    685933    _splitpath                  = NTDLL__splitpath              @442
    686934    _stat                       = CRTDLL__stat                  @443
    687 
    688 ;   _statusfp                                                   @445
     935;   _stati64                                                    @444
     936    _statusfp                   = CRTDLL__statusfp              @445
    689937    _strcmpi                    = NTDLL__strcmpi                @446
    690938    _strdate                    = CRTDLL__strdate               @447
    691939    _strdup                     = CRTDLL__strdup                @448
    692 ;   _strerror                                                   @449
     940    _strerror                   = CRTDLL__strerror              @449
    693941    _stricmp                    = NTDLL__stricmp                @450
    694942    _stricoll                   = CRTDLL__stricoll              @451
    695943    _strlwr                     = NTDLL__strlwr                 @452
    696 
     944    _strncoll                   = _MSVCRT__strncoll             @453
    697945    _strnicmp                   = NTDLL__strnicmp               @454
    698 
     946    _strnicoll                  = _MSVCRT__strnicoll            @455
    699947    _strnset                    = CRTDLL__strnset               @456
    700948    _strrev                     = CRTDLL__strrev                @457
     
    702950    _strtime                    = CRTDLL__strtime               @459
    703951    _strupr                     = NTDLL__strupr                 @460
    704 ;   _swab                                                       @461
     952    _swab                       = CRTDLL__swab                  @461
    705953;   _sys_errlist                                                @462
    706 
    707 ;   _tell                                                       @464
    708 
     954;   _sys_nerr                                                   @463
     955    _tell                       = CRTDLL__tell                  @464
     956;   _telli64                                                    @465
    709957    _tempnam                    = CRTDLL__tempnam               @466
    710 
     958;   _timezone                                                   @467
    711959    _tolower                    = CRTDLL__tolower               @468
    712960    _toupper                    = CRTDLL__toupper               @469
    713961;   _tzname                                                     @470
    714 ;   _tzset                                                      @471
    715 
     962    _tzset                      = CRTDLL__tzset                 @471
     963;   _ui64toa                                                    @472
     964;   _ui64tow                                                    @473
    716965    _ultoa                      = NTDLL__ultoa                  @474
    717 
     966;   _ultow                                                      @475
    718967;   _umask                                                      @476
    719 ;   _ungetch                                                    @477
     968    _ungetch                    = CRTDLL__ungetch               @477
    720969    _unlink                     = CRTDLL__unlink                @478
    721970;   _unloaddll                                                  @479
    722 
     971;   _unlock                                                     @480
    723972    _utime                      = CRTDLL__utime                 @481
    724973    _vsnprintf                  = NTDLL__vsnprintf              @482
    725974    _vsnwprintf                 = CRTDLL__vsnwprintf            @483
    726 
     975;   _waccess                                                    @484
     976;   _wasctime                                                   @485
     977;   _wchdir                                                     @486
     978;   _wchmod                                                     @487
     979;   _wcmdln                                                     @488   
     980;   _wcreat                                                     @489
    727981    _wcsdup                     = CRTDLL__wcsdup                @490
    728982    _wcsicmp                    = NTDLL__wcsicmp                @491
    729983    _wcsicoll                   = CRTDLL__wcsicoll              @492
    730984    _wcslwr                     = NTDLL__wcslwr                 @493
    731 
     985;   _wcsncoll                                                   @494
    732986    _wcsnicmp                   = NTDLL__wcsnicmp               @495
    733 
     987;   _wcsnicoll                                                  @496
    734988    _wcsnset                    = CRTDLL__wcsnset               @497
    735989    _wcsrev                     = CRTDLL__wcsrev                @498
     
    738992
    739993    _wcsupr                     = NTDLL__wcsupr                 @500
    740 
     994;   _wctime                                                     @501
     995;   _wenviron                                                   @502
     996;   _wexecl                                                     @503
     997;   _wexecle                                                    @504
     998;   _wexeclp                                                    @505
     999;   _wexeclpe                                                   @506
     1000;   _wexecv                                                     @507
     1001;   _wexecve                                                    @508
     1002;   _wexecvp                                                    @509
     1003;   _wexecvpe                                                   @510
     1004;   _wfdopen                                                    @511
     1005;   _wfindfirst                                                 @512
     1006;   _wfindfirsti64                                              @513
     1007;   _wfindnext                                                  @514
     1008;   _wfindnexti64                                               @515
     1009;   _wfopen                                                     @516
     1010;   _wfreopen                                                   @517
     1011;   _wfsopen                                                    @518
     1012;   _wfullpath                                                  @519
     1013;   _wgetcwd                                                    @520
     1014;   _wgetdcwd                                                   @521
     1015;   _wgetenv                                                    @522
     1016;   _winmajor                                                   @523
     1017;   _winminor                                                   @524
     1018;   _winver                                                     @525
     1019;   _wmakepath                                                  @526
     1020;   _wmkdir                                                     @527
     1021;   _wmktemp                                                    @528
     1022;   _wopen                                                      @529
     1023;   _wperror                                                    @530
     1024;   _wpgmptr                                                    @531
     1025;   _wpopen                                                     @532
     1026;   _wputenv                                                    @533
     1027;   _wremove                                                    @534
     1028;   _wrename                                                    @535
    7411029    _write                      = CRTDLL__write                 @536
    742 
     1030;   _wrmdir                                                     @537
     1031;   _wsearchenv                                                 @538
     1032;   _wsetlocale                                                 @539
     1033;   _wsopen                                                     @540
     1034;   _wspawnl                                                    @541
     1035;   _wspawnle                                                   @542
     1036;   _wspawnlp                                                   @543
     1037;   _wspawnlpe                                                  @544
     1038;   _wspawnv                                                    @545
     1039;   _wspawnve                                                   @546
     1040;   _wspawnvp                                                   @547
     1041;   _wspawnvpe                                                  @548
     1042;   _wsplitpath                                                 @549
     1043;   _wstat                                                      @550
     1044;   _wstati64                                                   @551
     1045;   _wstrdate                                                   @552
     1046;   _wstrtime                                                   @553
     1047;   _wsystem                                                    @554
     1048;   _wtempnam                                                   @555
     1049;   _wtmpnam                                                    @556
    7431050    _wtoi                       = NTDLL__wtoi                   @557
    744 
     1051;   _wtoi64                                                     @558
    7451052    _wtol                       = NTDLL__wtol                   @559
    746 
    747 ;   _y0                                                         @562
    748 ;   _y1                                                         @563
    749 ;   _yn                                                         @564
     1053;   _wunlink                                                    @560
     1054;   _wutime                                                     @561
     1055    _y0                         = CRTDLL__y0                    @562
     1056    _y1                         = CRTDLL__y1                    @563
     1057    _yn                         = CRTDLL__yn                    @564
    7501058    abort                       = CRTDLL_abort                  @565
    7511059    abs                         = NTDLL_abs                     @566
     
    7801088    fgets                       = CRTDLL_fgets                  @595
    7811089    fgetwc                      = CRTDLL_fgetwc                 @596
    782 
     1090    fgetws                      = _MSVCRT_fgetws                @597
    7831091    floor                       = NTDLL_floor                   @598
    7841092    fmod                        = CRTDLL_fmod                   @599
     
    7901098    fputs                       = CRTDLL_fputs                  @603
    7911099    fputwc                      = CRTDLL_fputwc                 @604
    792 
     1100    fputws                      = _MSVCRT_fputws                @605
    7931101    fread                       = CRTDLL_fread                  @606
    7941102    free                        = CRTDLL_free                   @607
     
    8061114    getenv                      = CRTDLL_getenv                 @619
    8071115    gets                        = CRTDLL_gets                   @620
    808 
     1116    getwc                       = _MSVCRT_getwc                 @621
     1117    getwchar                    = _MSVCRT_getwchar              @622
    8091118    gmtime                      = CRTDLL_gmtime                 @623
    8101119    is_wctype                   = CRTDLL_is_wctype              @624
     
    8591168    putchar                     = CRTDLL_putchar                @673
    8601169    puts                        = CRTDLL_puts                   @674
    861 
     1170    putwc                       = _MSVCRT_putwc                 @675
     1171    putwchar                    = _MSVCRT_putwchar              @676
    8621172    qsort                       = NTDLL_qsort                   @677
    8631173    raise                       = CRTDLL_raise                  @678
Note: See TracChangeset for help on using the changeset viewer.