Module: wine Branch: master Commit: 9a8d3cc5bd27e86503a57554454d191270ba1a9e URL: http://source.winehq.org/git/wine.git/?a=commit;h=9a8d3cc5bd27e86503a5755445...
Author: Daniel Lehman dlehman@esri.com Date: Fri Jan 13 15:03:46 2012 -0800
msvcrt: Add declarations to stdlib.h for _wcstoui64 and _wcstoi64.
---
include/msvcrt/stdlib.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index 6a6398d..c972156 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h @@ -237,6 +237,10 @@ size_t __cdecl wcstombs(char*,const wchar_t*,size_t); errno_t __cdecl wcstombs_s(size_t*,char*,size_t,const wchar_t*,size_t); __msvcrt_ulong __cdecl wcstoul(const wchar_t*,wchar_t**,int); int __cdecl wctomb(char*,wchar_t); +__int64 __cdecl _wcstoi64(const wchar_t*,wchar_t**,int); +__int64 __cdecl _wcstoi64_l(const wchar_t*,wchar_t**,int,_locale_t); +unsigned __int64 __cdecl _wcstoui64(const wchar_t*,wchar_t**,int); +unsigned __int64 __cdecl _wcstoui64_l(const wchar_t*,wchar_t**,int,_locale_t); #endif /* _WSTDLIB_DEFINED */
typedef void (__cdecl *_invalid_parameter_handler)(const wchar_t*, const wchar_t*, const wchar_t*, unsigned, uintptr_t);