Changeset 383 for trunk/Include/crt.sbp


Ignore:
Timestamp:
Nov 17, 2007, 9:34:36 AM (16 years ago)
Author:
イグトランス (egtra)
Message:

SPrintf関数の実装

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/crt.sbp

    r300 r383  
    6565#endif
    6666
     67Declare Function strtol CDecl Lib _CrtDllName (s As PCSTR, ByRef endPtr As PSTR, base As Long) As Long
     68Declare Function wcstol CDecl Lib _CrtDllName (s As PCWSTR, ByRef endPtr As PWSTR, base As Long) As Long
     69
     70#ifdef UNICODE
     71Declare Function _tcstol CDecl Lib _CrtDllName Alias "wcstol" (s As PCTSTR, ByRef endPtr As PTSTR, base As Long) As Long
     72#else
     73Declare Function _tcstol CDecl Lib _CrtDllName Alias "strtol" (s As PCTSTR, ByRef endPtr As PTSTR, base As Long) As Long
     74#endif
     75
    6776
    6877#endif '_INC_CRT
Note: See TracChangeset for help on using the changeset viewer.