- Timestamp:
- Oct 1, 1999, 6:02:32 PM (26 years ago)
- 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:06sandervl Exp $ */1 /* $Id: msvcrt.cpp,v 1.2 1999-10-01 16:02:32 sandervl Exp $ */ 2 2 3 3 /* … … 11 11 12 12 #include <os2win.h> 13 #include <wchar.h> 13 14 #include "debugtools.h" 14 15 #include <debugdefs.h> … … 64 65 return FALSE; 65 66 } 67 68 69 /********************************************************************* 70 * _getws (MSVCRT.261) 71 */ 72 wchar_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 */ 83 int 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 */ 94 int 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 */ 105 int 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 */ 116 int 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 */ 127 int 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 */ 138 int 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 */ 149 int 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 */ 160 wchar_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 */ 170 int 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 */ 180 wint_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 */ 190 wint_t CDECL MSVCRT_getwchar( void ) 191 { 192 dprintf(("MSVCRT: getwchar\n")); 193 return (getwchar()); 194 } 195 196 197 /********************************************************************* 198 * putwc (MSVCRT.675) 199 */ 200 wint_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 */ 211 wint_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:06sandervl Exp $1 ; $Id: msvcrt.def,v 1.2 1999-10-01 16:02:32 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 8 8 ; Forwarded APIs - KERNEL32 9 9 KERNEL32_memmove = KERNEL32.memmove 10 KERNEL32_CompareStringA = KERNEL32._CompareStringA 11 KERNEL32_GetLocaleInfoW = KERNEL32._GetLocaleInfoW 12 KERNEL32_LCMapStringA = KERNEL32._LCMapStringA 10 13 11 14 ; Forwarded APIs - NTDLL … … 100 103 101 104 ; Forwarded APIs - CRTDLL 105 CRTDLL___dllonexit = CRTDLL.__dllonexit 106 CRTDLL___doserrno = CRTDLL.__doserrno 107 CRTDLL___GetMainArgs = CRTDLL.__GetMainArgs 102 108 CRTDLL___isascii = CRTDLL.__isascii 103 109 CRTDLL___iscsym = CRTDLL.__iscsym 104 110 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 105 128 CRTDLL__access = CRTDLL._access 106 129 CRTDLL__amsg_exit = CRTDLL._amsg_exit 107 130 CRTDLL__assert = CRTDLL._assert 131 CRTDLL__beep = CRTDLL._beep 108 132 CRTDLL__beginthread = CRTDLL._beginthread 109 133 CRTDLL__c_exit = CRTDLL._c_exit 134 CRTDLL__cabs = CRTDLL._cabs 110 135 CRTDLL__cexit = CRTDLL._cexit 136 CRTDLL__cgets = CRTDLL._cgets 111 137 CRTDLL__chdir = CRTDLL._chdir 112 138 CRTDLL__chdrive = CRTDLL._chdrive 139 CRTDLL__chgsign = CRTDLL._chgsign 140 CRTDLL__chmod = CRTDLL._chmod 141 CRTDLL__chsize = CRTDLL._chsize 142 CRTDLL__clearfp = CRTDLL._clearfp 113 143 CRTDLL__close = CRTDLL._close 114 144 CRTDLL__control87 = CRTDLL._control87 115 145 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 116 151 CRTDLL__cwait = CRTDLL._cwait 117 152 CRTDLL__dup = CRTDLL._dup … … 121 156 CRTDLL__errno = CRTDLL._errno 122 157 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 123 166 CRTDLL__exit = CRTDLL._exit 124 167 CRTDLL__expand = CRTDLL._expand 168 CRTDLL__fcloseall = CRTDLL._fcloseall 125 169 CRTDLL__fcvt = CRTDLL._fcvt 126 170 CRTDLL__fdopen = CRTDLL._fdopen 127 171 CRTDLL__fgetchar = CRTDLL._fgetchar 128 172 CRTDLL__fgetwchar = CRTDLL._fgetwchar 173 CRTDLL__filbuf = CRTDLL._filbuf 174 CRTDLL__filelength = CRTDLL._filelength 175 CRTDLL__fileno = CRTDLL._fileno 129 176 CRTDLL__findclose = CRTDLL._findclose 130 177 CRTDLL__findfirst = CRTDLL._findfirst 131 178 CRTDLL__findnext = CRTDLL._findnext 132 179 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 133 184 CRTDLL__fpreset = CRTDLL._fpreset 134 185 CRTDLL__fputchar = CRTDLL._fputchar … … 138 189 CRTDLL__ftime = CRTDLL._ftime 139 190 CRTDLL__fullpath = CRTDLL._fullpath 191 CRTDLL__futime = CRTDLL._futime 140 192 CRTDLL__gcvt = CRTDLL._gcvt 141 193 CRTDLL__get_osfhandle = CRTDLL._get_osfhandle … … 146 198 CRTDLL__getdiskfree = CRTDLL._getdiskfree 147 199 CRTDLL__getdrive = CRTDLL._getdrive 200 CRTDLL__getdrives = CRTDLL._getdrives 201 CRTDLL__getpid = CRTDLL._getpid 148 202 CRTDLL__getw = CRTDLL._getw 203 CRTDLL__getws = CRTDLL._getws 149 204 CRTDLL__global_unwind2 = CRTDLL._global_unwind2 150 205 CRTDLL__heapchk = CRTDLL._heapchk … … 152 207 CRTDLL__heapset = CRTDLL._heapset 153 208 CRTDLL__heapwalk = CRTDLL._heapwalk 209 CRTDLL__hypot = CRTDLL._hypot 154 210 CRTDLL__iob = CRTDLL._iob 155 211 CRTDLL__isatty = CRTDLL._isatty … … 178 234 CRTDLL__ismbcsymbol = CRTDLL._ismbcsymbol 179 235 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 180 244 CRTDLL__local_unwind2 = CRTDLL._local_unwind2 181 245 CRTDLL__locking = CRTDLL._locking 246 CRTDLL__logb = CRTDLL._logb 182 247 CRTDLL__lrotl = CRTDLL._lrotl 183 248 CRTDLL__lrotr = CRTDLL._lrotr 249 CRTDLL__lsearch = CRTDLL._lsearch 184 250 CRTDLL__lseek = CRTDLL._lseek 185 251 CRTDLL__makepath = CRTDLL._makepath … … 229 295 CRTDLL__mbsstr = CRTDLL._mbsstr 230 296 CRTDLL__mbstok = CRTDLL._mbstok 297 CRTDLL__mbstrlen = CRTDLL._mbstrlen 231 298 CRTDLL__mbsupr = CRTDLL._mbsupr 299 CRTDLL__memccpy = CRTDLL._memccpy 232 300 CRTDLL__mkdir = CRTDLL._mkdir 233 301 CRTDLL__mktemp = CRTDLL._mktemp 234 302 CRTDLL__msize = CRTDLL._msize 303 CRTDLL__nextafter = CRTDLL._nextafter 304 CRTDLL__onexit = CRTDLL._onexit 235 305 CRTDLL__open = CRTDLL._open 236 306 CRTDLL__open_osfhandle = CRTDLL._open_osfhandle … … 238 308 CRTDLL__pipe = CRTDLL._pipe 239 309 CRTDLL__popen = CRTDLL._popen 310 CRTDLL__putch = CRTDLL._putch 311 CRTDLL__putenv = CRTDLL._putenv 240 312 CRTDLL__putw = CRTDLL._putw 241 313 CRTDLL__read = CRTDLL._read 314 CRTDLL__rmdir = CRTDLL._rmdir 315 CRTDLL__rmtmp = CRTDLL._rmtmp 242 316 CRTDLL__rotl = CRTDLL._rotl 243 317 CRTDLL__rotr = CRTDLL._rotr 318 CRTDLL__scalb = CRTDLL._scalb 244 319 CRTDLL__searchenv = CRTDLL._searchenv 245 320 CRTDLL__setjmp = CRTDLL._setjmp 246 321 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 247 331 CRTDLL__sleep = CRTDLL._sleep 332 CRTDLL__sopen = CRTDLL._sopen 248 333 CRTDLL__stat = CRTDLL._stat 334 CRTDLL__statusfp = CRTDLL._statusfp 249 335 CRTDLL__strdate = CRTDLL._strdate 250 336 CRTDLL__strdup = CRTDLL._strdup 337 CRTDLL__strerror = CRTDLL._strerror 251 338 CRTDLL__stricoll = CRTDLL._stricoll 252 339 CRTDLL__strnset = CRTDLL._strnset … … 254 341 CRTDLL__strset = CRTDLL._strset 255 342 CRTDLL__strtime = CRTDLL._strtime 343 CRTDLL__swab = CRTDLL._swab 344 CRTDLL__tell = CRTDLL._tell 256 345 CRTDLL__tempnam = CRTDLL._tempnam 257 346 CRTDLL__tolower = CRTDLL._tolower 258 347 CRTDLL__toupper = CRTDLL._toupper 348 CRTDLL__tzset = CRTDLL._tzset 349 CRTDLL__ungetch = CRTDLL._ungetch 259 350 CRTDLL__unlink = CRTDLL._unlink 260 351 CRTDLL__utime = CRTDLL._utime … … 266 357 CRTDLL__wcsset = CRTDLL._wcsset 267 358 CRTDLL__write = CRTDLL._write 359 CRTDLL__y0 = CRTDLL._y0 360 CRTDLL__y1 = CRTDLL._y1 361 CRTDLL__yn = CRTDLL._yn 268 362 CRTDLL_abort = CRTDLL.abort 269 363 CRTDLL_acos = CRTDLL.acos … … 390 484 391 485 EXPORTS 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 402 545 _CIpow = NTDLL__CIpow @60 403 ; _CIsin@61404 ; _CIsinh@62405 ; _CIsqrt@63406 ; _CItan@64407 ; _CItanh@65546 _CIsin = CRTDLL__CIsin @61 547 _CIsinh = CRTDLL__CIsinh @62 548 _CIsqrt = CRTDLL__CIsqrt @63 549 _CItan = CRTDLL__CItan @64 550 _CItanh = CRTDLL__CItanh @65 408 551 _CxxThrowException = _MSVCRT__CxxThrowException @66 409 552 _EH_prolog = _MSVCRT__EH_prolog @67 410 553 ; _Getdays @68 554 ; _Getmonths @69 555 ; _Gettnames @70 556 ; _HUGE @71 557 ; _Strftime = @72 411 558 _XcptFilter = _MSVCRT__XcptFilter @73 412 559 __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 414 576 __isascii = CRTDLL___isascii @91 415 577 __iscsym = CRTDLL___iscsym @92 416 578 __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 419 630 _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 421 647 _amsg_exit = CRTDLL__amsg_exit @160 422 648 _assert = CRTDLL__assert @161 423 424 ; _beep @165 649 ; _atodbl @162 650 ; _atoi64 @163 651 ; _atoldbl @164 652 _beep = CRTDLL__beep @165 425 653 _beginthread = CRTDLL__beginthread @166 426 654 ; _beginthreadex @167 427 655 _c_exit = CRTDLL__c_exit @168 428 ; _cabs@169656 _cabs = CRTDLL__cabs @169 429 657 _cexit = CRTDLL__cexit @171 430 ; _cgets@172658 _cgets = CRTDLL__cgets @172 431 659 _chdir = CRTDLL__chdir @173 432 660 _chdrive = CRTDLL__chdrive @174 433 ; _chgsign@175434 435 ; _chmod@177436 ; _chsize@178437 ; _clearfp@179661 _chgsign = CRTDLL__chgsign @175 662 ; _chkesp @176 663 _chmod = CRTDLL__chmod @177 664 _chsize = CRTDLL__chsize @178 665 _clearfp = CRTDLL__clearfp @179 438 666 _close = CRTDLL__close @180 439 667 ; _commit @181 440 668 ; _commode @182 441 669 _control87 = CRTDLL__control87 @183 442 670 _controlfp = CRTDLL__controlfp @184 443 ; _copysign@185444 ; _cprintf@186445 ; _cputs@187446 ; _creat@188447 ; _cscanf@189671 _copysign = CRTDLL__copysign @185 672 _cprintf = CRTDLL__cprintf @186 673 _cputs = CRTDLL__cputs @187 674 _creat = CRTDLL__creat @188 675 _cscanf = CRTDLL__cscanf @189 448 676 ; _ctype @190 449 677 _cwait = CRTDLL__cwait @191 450 678 ; _daylight_dll @192 451 679 ; _dstbias @193 452 680 _dup = CRTDLL__dup @194 453 681 _dup2 = CRTDLL__dup2 @195 454 682 _ecvt = CRTDLL__ecvt @196 455 683 _endthread = CRTDLL__endthread @197 684 ; _endthreadex @198 685 ; _environ @199 686 456 687 457 688 ; _eof @200 458 689 _errno = CRTDLL__errno @201 459 690 _except_handler2 = CRTDLL__except_handler2 @202 460 461 ; _execl@204462 ; _execle@205463 ; _execlp@206464 ; _execlpe@207465 ; _execv@208466 ; _execve@209467 ; _execvp@210468 ; _execvpe@211691 ; _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 469 700 _exit = CRTDLL__exit @212 470 701 _expand = CRTDLL__expand @213 471 ; _fcloseall@214702 _fcloseall = CRTDLL__fcloseall @214 472 703 _fcvt = CRTDLL__fcvt @215 473 704 _fdopen = CRTDLL__fdopen @216 474 705 _fgetchar = CRTDLL__fgetchar @217 475 706 _fgetwchar = CRTDLL__fgetwchar @218 476 ; _filbuf@219477 478 ; _filelength@221479 480 ; _fileno@223707 _filbuf = CRTDLL__filbuf @219 708 ; _fileinfo @220 709 _filelength = CRTDLL__filelength @221 710 ; _filelengthi64 @222 711 _fileno = CRTDLL__fileno @223 481 712 _findclose = CRTDLL__findclose @224 482 713 _findfirst = CRTDLL__findfirst @225 483 714 ; _findfirsti64 @226 484 715 _findnext = CRTDLL__findnext @227 485 716 ; _findnexti64 @228 486 717 _finite = CRTDLL__finite @229 487 ; _flsbuf@230488 ; _flushall@231489 490 ; _fpclass@233491 ; _fpieee_flt@234718 _flsbuf = CRTDLL__flsbuf @230 719 _flushall = CRTDLL__flushall @231 720 ; _fmode @232 721 _fpclass = CRTDLL__fpclass @233 722 _fpieee_flt = CRTDLL__fpieee_flt @234 492 723 _fpreset = CRTDLL__fpreset @235 493 724 _fputchar = CRTDLL__fputchar @236 … … 495 726 _fsopen = CRTDLL__fsopen @238 496 727 _fstat = CRTDLL__fstat @239 497 728 ; _fstati64 @240 498 729 _ftime = CRTDLL__ftime @241 499 730 _ftol = NTDLL__ftol @242 500 731 _fullpath = CRTDLL__fullpath @243 501 ; _futime@244732 _futime = CRTDLL__futime @244 502 733 _gcvt = CRTDLL__gcvt @245 503 734 _get_osfhandle = CRTDLL__get_osfhandle @246 504 735 ; _get_sbh_threshold @247 505 736 _getch = CRTDLL__getch @248 506 737 _getche = CRTDLL__getche @249 … … 510 741 ; _getdllprocaddr @253 511 742 _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 515 747 ; _getsystime @259 516 748 _getw = CRTDLL__getw @260 517 518 _global_unwind2 = CRTDLL__global_unwind2 @26 1519 749 _getws = CRTDLL__getws @261 750 _global_unwind2 = CRTDLL__global_unwind2 @262 751 ; _heapadd @263 520 752 _heapchk = CRTDLL__heapchk @264 521 753 _heapmin = CRTDLL__heapmin @265 522 754 _heapset = CRTDLL__heapset @266 523 755 _heapwalk = CRTDLL__heapwalk @268 524 ; _hypot @269 525 756 _hypot = CRTDLL__hypot @269 757 ; _i64toa @270 758 ; _i64tow @271 526 759 _initterm = _DLL_InitTerm @272 527 760 ; _inp @273 761 ; _inpd @274 762 ; _inpw @275 528 763 _iob = CRTDLL__iob @276 529 764 _isatty = CRTDLL__isatty @277 … … 534 769 _ismbbkalnum = CRTDLL__ismbbkalnum @282 535 770 _ismbbkana = CRTDLL__ismbbkana @283 536 771 _ismbbkprint = _MSVCRT__ismbbkprint @284 537 772 _ismbbkpunct = CRTDLL__ismbbkpunct @285 538 773 _ismbblead = CRTDLL__ismbblead @286 … … 540 775 _ismbbpunct = CRTDLL__ismbbpunct @288 541 776 _ismbbtrail = CRTDLL__ismbbtrail @289 542 777 _ismbcalnum = _MSVCRT__ismbcalnum @290 543 778 _ismbcalpha = CRTDLL__ismbcalpha @291 544 779 _ismbcdigit = CRTDLL__ismbcdigit @292 545 780 _ismbcgraph = _MSVCRT__ismbcgraph @293 546 781 _ismbchira = CRTDLL__ismbchira @294 547 782 _ismbckata = CRTDLL__ismbckata @295 … … 554 789 _ismbclower = CRTDLL__ismbclower @300 555 790 _ismbcprint = CRTDLL__ismbcprint @301 556 791 _ismbcpunct = _MSVCRT__ismbcpunct @302 557 792 _ismbcspace = CRTDLL__ismbcspace @303 558 793 _ismbcsymbol = CRTDLL__ismbcsymbol @304 559 794 _ismbcupper = CRTDLL__ismbcupper @305 560 ; _ismbslead@306561 ; _ismbstrail@307562 ; _isnan@308795 _ismbslead = CRTDLL__ismbslead @306 796 _ismbstrail = CRTDLL__ismbstrail @307 797 _isnan = CRTDLL__isnan @308 563 798 _itoa = NTDLL__itoa @309 564 565 ; _j0@311566 ; _j1@312567 ; _jn@313568 ; _kbhit@314569 ; _lfind@315799 ; _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 570 805 ; _loaddll @316 571 806 _local_unwind2 = CRTDLL__local_unwind2 @317 572 807 ; _lock @318 573 808 _locking = CRTDLL__locking @319 574 ; _logb@320575 809 _logb = CRTDLL__logb @320 810 ; _longjmpex @321 576 811 _lrotl = CRTDLL__lrotl @322 577 812 _lrotr = CRTDLL__lrotr @323 578 ; _lsearch@324813 _lsearch = CRTDLL__lsearch @324 579 814 _lseek = CRTDLL__lseek @325 580 815 ; _lseeki64 @326 581 816 _ltoa = NTDLL__ltoa @327 582 817 ; _ltow @328 583 818 _makepath = CRTDLL__makepath @329 584 819 _mbbtombc = CRTDLL__mbbtombc @330 585 820 _mbbtype = CRTDLL__mbbtype @331 586 821 ; _mbcasemap @332 587 822 _mbccpy = CRTDLL__mbccpy @333 588 823 _mbcjistojms = CRTDLL__mbcjistojms @334 … … 599 834 _mbschr = CRTDLL__mbschr @345 600 835 _mbscmp = CRTDLL__mbscmp @346 601 836 _mbscoll = CRTDLL__mbscmp @347 602 837 _mbscpy = CRTDLL__mbscpy @348 603 838 _mbscspn = CRTDLL__mbscspn @349 … … 605 840 _mbsdup = CRTDLL__mbsdup @351 606 841 _mbsicmp = CRTDLL__mbsicmp @352 607 842 _mbsicoll = CRTDLL__mbsicmp @353 608 843 _mbsinc = CRTDLL__mbsinc @354 609 844 _mbslen = CRTDLL__mbslen @355 … … 612 847 _mbsnbcmp = CRTDLL__mbsnbcmp @358 613 848 _mbsnbcnt = CRTDLL__mbsnbcnt @359 614 849 _mbsnbcoll = CRTDLL__mbsncmp @360 615 850 _mbsnbcpy = CRTDLL__mbsnbcpy @361 616 851 _mbsnbicmp = CRTDLL__mbsnbicmp @362 617 852 _mbsnbicoll = CRTDLL__mbsnbicmp @363 618 853 _mbsnbset = CRTDLL__mbsnbset @364 619 854 _mbsncat = CRTDLL__mbsncat @365 620 855 _mbsnccnt = CRTDLL__mbsnccnt @366 621 856 _mbsncmp = CRTDLL__mbsncmp @367 622 857 _mbsncoll = CRTDLL__mbsncmp @368 623 858 _mbsncpy = CRTDLL__mbsncpy @369 624 859 _mbsnextc = CRTDLL__mbsnextc @370 625 860 _mbsnicmp = CRTDLL__mbsnicmp @371 626 861 _mbsnicoll = CRTDLL__mbsnicmp @372 627 862 _mbsninc = CRTDLL__mbsninc @373 628 863 _mbsnset = CRTDLL__mbsnset @374 … … 635 870 _mbsstr = CRTDLL__mbsstr @381 636 871 _mbstok = CRTDLL__mbstok @382 637 ; _mbstrlen@383872 _mbstrlen = CRTDLL__mbstrlen @383 638 873 _mbsupr = CRTDLL__mbsupr @384 639 ; _memccpy@385874 _memccpy = CRTDLL__memccpy @385 640 875 _memicmp = NTDLL__memicmp @386 641 876 _mkdir = CRTDLL__mkdir @387 642 877 _mktemp = CRTDLL__mktemp @388 643 878 _msize = CRTDLL__msize @389 644 ; _nextafter@390645 ; _onexit@391879 _nextafter = CRTDLL__nextafter @390 880 _onexit = CRTDLL__onexit @391 646 881 _open = CRTDLL__open @392 647 882 _open_osfhandle = CRTDLL__open_osfhandle @393 648 883 ; _osver @394 884 ; _outp @395 885 ; _outpd @396 886 ; _outpw @397 649 887 _pclose = CRTDLL__pclose @398 650 651 888 ; _pctype @399 889 890 891 ; _pgmptr @400 652 892 _pipe = CRTDLL__pipe @401 653 893 _popen = CRTDLL__popen @402 654 894 ; _purecall @403 655 ; _putch@404656 ; _putenv@405895 _putch = CRTDLL__putch @404 896 _putenv = CRTDLL__putenv @405 657 897 _putw = CRTDLL__putw @406 658 898 _putws = _MSVCRT__putws @407 899 ; _pwctype @408 659 900 _read = CRTDLL__read @409 660 ; _rmdir@410661 ; _rmtmp@411901 _rmdir = CRTDLL__rmdir @410 902 _rmtmp = CRTDLL__rmtmp @411 662 903 _rotl = CRTDLL__rotl @412 663 904 _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 666 910 _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 669 915 _setjmp = CRTDLL__setjmp @424 670 916 ; _setjmp3 @425 917 ; _setmaxstdio @426 918 ; _setmbcp @427 671 919 _setmode @428 672 920 ; _setsystime @429 … … 674 922 _snprintf = NTDLL__snprintf @431 675 923 _snwprintf = NTDLL__snwprintf @432 676 ; _sopen@433677 ; _spawnl@434678 ; _spawnle@435679 ; _spawnlp@436680 ; _spawnlpe@437681 ; _spawnv@438682 ; _spawnve@439683 ; _spawnvp@440684 ; _spawnvpe@441924 _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 685 933 _splitpath = NTDLL__splitpath @442 686 934 _stat = CRTDLL__stat @443 687 688 ; _statusfp@445935 ; _stati64 @444 936 _statusfp = CRTDLL__statusfp @445 689 937 _strcmpi = NTDLL__strcmpi @446 690 938 _strdate = CRTDLL__strdate @447 691 939 _strdup = CRTDLL__strdup @448 692 ; _strerror@449940 _strerror = CRTDLL__strerror @449 693 941 _stricmp = NTDLL__stricmp @450 694 942 _stricoll = CRTDLL__stricoll @451 695 943 _strlwr = NTDLL__strlwr @452 696 944 _strncoll = _MSVCRT__strncoll @453 697 945 _strnicmp = NTDLL__strnicmp @454 698 946 _strnicoll = _MSVCRT__strnicoll @455 699 947 _strnset = CRTDLL__strnset @456 700 948 _strrev = CRTDLL__strrev @457 … … 702 950 _strtime = CRTDLL__strtime @459 703 951 _strupr = NTDLL__strupr @460 704 ; _swab@461952 _swab = CRTDLL__swab @461 705 953 ; _sys_errlist @462 706 707 ; _tell@464708 954 ; _sys_nerr @463 955 _tell = CRTDLL__tell @464 956 ; _telli64 @465 709 957 _tempnam = CRTDLL__tempnam @466 710 958 ; _timezone @467 711 959 _tolower = CRTDLL__tolower @468 712 960 _toupper = CRTDLL__toupper @469 713 961 ; _tzname @470 714 ; _tzset @471 715 962 _tzset = CRTDLL__tzset @471 963 ; _ui64toa @472 964 ; _ui64tow @473 716 965 _ultoa = NTDLL__ultoa @474 717 966 ; _ultow @475 718 967 ; _umask @476 719 ; _ungetch@477968 _ungetch = CRTDLL__ungetch @477 720 969 _unlink = CRTDLL__unlink @478 721 970 ; _unloaddll @479 722 971 ; _unlock @480 723 972 _utime = CRTDLL__utime @481 724 973 _vsnprintf = NTDLL__vsnprintf @482 725 974 _vsnwprintf = CRTDLL__vsnwprintf @483 726 975 ; _waccess @484 976 ; _wasctime @485 977 ; _wchdir @486 978 ; _wchmod @487 979 ; _wcmdln @488 980 ; _wcreat @489 727 981 _wcsdup = CRTDLL__wcsdup @490 728 982 _wcsicmp = NTDLL__wcsicmp @491 729 983 _wcsicoll = CRTDLL__wcsicoll @492 730 984 _wcslwr = NTDLL__wcslwr @493 731 985 ; _wcsncoll @494 732 986 _wcsnicmp = NTDLL__wcsnicmp @495 733 987 ; _wcsnicoll @496 734 988 _wcsnset = CRTDLL__wcsnset @497 735 989 _wcsrev = CRTDLL__wcsrev @498 … … 738 992 739 993 _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 741 1029 _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 743 1050 _wtoi = NTDLL__wtoi @557 744 1051 ; _wtoi64 @558 745 1052 _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 750 1058 abort = CRTDLL_abort @565 751 1059 abs = NTDLL_abs @566 … … 780 1088 fgets = CRTDLL_fgets @595 781 1089 fgetwc = CRTDLL_fgetwc @596 782 1090 fgetws = _MSVCRT_fgetws @597 783 1091 floor = NTDLL_floor @598 784 1092 fmod = CRTDLL_fmod @599 … … 790 1098 fputs = CRTDLL_fputs @603 791 1099 fputwc = CRTDLL_fputwc @604 792 1100 fputws = _MSVCRT_fputws @605 793 1101 fread = CRTDLL_fread @606 794 1102 free = CRTDLL_free @607 … … 806 1114 getenv = CRTDLL_getenv @619 807 1115 gets = CRTDLL_gets @620 808 1116 getwc = _MSVCRT_getwc @621 1117 getwchar = _MSVCRT_getwchar @622 809 1118 gmtime = CRTDLL_gmtime @623 810 1119 is_wctype = CRTDLL_is_wctype @624 … … 859 1168 putchar = CRTDLL_putchar @673 860 1169 puts = CRTDLL_puts @674 861 1170 putwc = _MSVCRT_putwc @675 1171 putwchar = _MSVCRT_putwchar @676 862 1172 qsort = NTDLL_qsort @677 863 1173 raise = CRTDLL_raise @678
Note:
See TracChangeset
for help on using the changeset viewer.