* include/wchar.h (_wcstrtoi64): Declare.
(_wcstrtoi64_l): Ditto. (_wcstrtoui64): Ditto. (_wcstrtoui64_l): Ditto.
This commit is contained in:
parent
dc8a67cbc3
commit
a8d0071db2
|
@ -8,6 +8,10 @@
|
|||
(_wcstrtoi64_l): Ditto.
|
||||
(_wcstrtoui64): Ditto.
|
||||
(_wcstrtoui64_l): Ditto.
|
||||
* include/wchar.h (_wcstrtoi64): Ditto.
|
||||
(_wcstrtoi64_l): Ditto.
|
||||
(_wcstrtoui64): Ditto.
|
||||
(_wcstrtoui64_l): Ditto.
|
||||
|
||||
2012-08-01 Earnie Boyd <earnie@users.sourceforge.net>
|
||||
|
||||
|
|
|
@ -302,12 +302,8 @@ __MINGW_IMPORT int _fmode_dll;
|
|||
|
||||
_CRTIMP __int64 __cdecl _strtoi64(const char*, char **, int);
|
||||
_CRTIMP __int64 __cdecl _strtoi64_l(const char *, char **, int, _locale_t);
|
||||
_CRTIMP __int64 __cdecl _wcstoi64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP __int64 __cdecl _wcstoi64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
_CRTIMP unsigned __int64 __cdecl _strtoui64(const char*, char **, int);
|
||||
_CRTIMP unsigned __int64 __cdecl _strtoui64_l(const char *, char **, int, _locale_t);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
|
||||
_CRTIMP double __cdecl __MINGW_NOTHROW atof (const char*);
|
||||
_CRTIMP int __cdecl __MINGW_NOTHROW atoi (const char*);
|
||||
|
@ -332,6 +328,10 @@ _CRTIMP unsigned long __cdecl __MINGW_NOTHROW strtoul (const char*, char**, int)
|
|||
|
||||
#ifndef _WSTDLIB_DEFINED
|
||||
/* also declared in wchar.h */
|
||||
_CRTIMP __int64 __cdecl _wcstoi64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP __int64 __cdecl _wcstoi64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
_CRTIMP long __cdecl __MINGW_NOTHROW wcstol (const wchar_t*, wchar_t**, int);
|
||||
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW wcstoul (const wchar_t*, wchar_t**, int);
|
||||
_CRTIMP double __cdecl __MINGW_NOTHROW wcstod (const wchar_t*, wchar_t**);
|
||||
|
|
|
@ -177,6 +177,10 @@ _CRTIMP void __cdecl __MINGW_NOTHROW _wmakepath(wchar_t*, const wchar_t*, const
|
|||
_CRTIMP void __cdecl __MINGW_NOTHROW _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*);
|
||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _wfullpath (wchar_t*, const wchar_t*, size_t);
|
||||
#endif
|
||||
_CRTIMP __int64 __cdecl _wcstoi64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP __int64 __cdecl _wcstoi64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64(const wchar_t *, wchar_t **, int);
|
||||
_CRTIMP unsigned __int64 __cdecl _wcstoui64_l(const wchar_t *, wchar_t **, int, _locale_t);
|
||||
#define _WSTDLIB_DEFINED
|
||||
#endif /* _WSTDLIB_DEFINED */
|
||||
|
||||
|
|
Loading…
Reference in New Issue