Author: tkreuzer Date: Fri Dec 12 18:32:37 2008 New Revision: 38036
URL: http://svn.reactos.org/svn/reactos?rev=38036&view=rev Log: add _strtoi64 and _strtoui64 to stdlib.h
Modified: trunk/reactos/include/crt/stdlib.h
Modified: trunk/reactos/include/crt/stdlib.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/stdlib.h?rev=38... ============================================================================== --- trunk/reactos/include/crt/stdlib.h [iso-8859-1] (original) +++ trunk/reactos/include/crt/stdlib.h [iso-8859-1] Fri Dec 12 18:32:37 2008 @@ -503,6 +503,9 @@ long long __cdecl __MINGW_NOTHROW strtoll (const char* __restrict__, char** __restrict, int); unsigned long long __cdecl __MINGW_NOTHROW strtoull (const char* __restrict__, char** __restrict__, int);
+_CRTIMP __int64 __cdecl _strtoi64(const char *,char **,int); +_CRTIMP unsigned __int64 __cdecl _strtoui64(const char *,char **,int); + #if defined (__MSVCRT__) /* these are stubs for MS _i64 versions */ long long __cdecl __MINGW_NOTHROW atoll (const char *);