ucrtbase: Add strtoumax and _strtoumax_l.
Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ad9b25828e
commit
cee3a25dd6
|
@ -41,7 +41,7 @@
|
|||
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) ucrtbase._strtoui64_l
|
||||
@ cdecl _strtoul_l(str ptr long ptr) ucrtbase._strtoul_l
|
||||
@ cdecl -ret64 _strtoull_l(str ptr long ptr) ucrtbase._strtoull_l
|
||||
@ stub _strtoumax_l
|
||||
@ cdecl -ret64 _strtoumax_l(str ptr long ptr) ucrtbase._strtoumax_l
|
||||
@ cdecl _ui64toa(int64 ptr long) ucrtbase._ui64toa
|
||||
@ cdecl _ui64toa_s(int64 ptr long long) ucrtbase._ui64toa_s
|
||||
@ cdecl _ui64tow(int64 ptr long) ucrtbase._ui64tow
|
||||
|
@ -100,7 +100,7 @@
|
|||
@ cdecl -ret64 strtoll(str ptr long) ucrtbase.strtoll
|
||||
@ cdecl strtoul(str ptr long) ucrtbase.strtoul
|
||||
@ cdecl -ret64 strtoull(str ptr long) ucrtbase.strtoull
|
||||
@ stub strtoumax
|
||||
@ cdecl -ret64 strtoumax(str ptr long) ucrtbase.strtoumax
|
||||
@ cdecl wcrtomb(ptr long ptr) ucrtbase.wcrtomb
|
||||
@ stub wcrtomb_s
|
||||
@ cdecl wcsrtombs(ptr ptr long ptr) ucrtbase.wcsrtombs
|
||||
|
|
|
@ -1960,7 +1960,7 @@
|
|||
@ cdecl -ret64 _strtoui64_l(str ptr long ptr) MSVCRT_strtoui64_l
|
||||
@ cdecl _strtoul_l(str ptr long ptr) MSVCRT_strtoul_l
|
||||
@ cdecl -ret64 _strtoull_l(str ptr long ptr) MSVCRT_strtoui64_l
|
||||
@ stub _strtoumax_l
|
||||
@ cdecl -ret64 _strtoumax_l(str ptr long ptr) MSVCRT_strtoui64_l
|
||||
@ cdecl _strupr(str) MSVCRT__strupr
|
||||
@ cdecl _strupr_l(str ptr) MSVCRT__strupr_l
|
||||
@ cdecl _strupr_s(str long) MSVCRT__strupr_s
|
||||
|
@ -2526,7 +2526,7 @@
|
|||
@ cdecl -ret64 strtoll(str ptr long) MSVCRT_strtoi64
|
||||
@ cdecl strtoul(str ptr long) MSVCRT_strtoul
|
||||
@ cdecl -ret64 strtoull(str ptr long) MSVCRT_strtoui64
|
||||
@ stub strtoumax
|
||||
@ cdecl -ret64 strtoumax(str ptr long) MSVCRT_strtoui64
|
||||
@ cdecl strxfrm(ptr str long) MSVCRT_strxfrm
|
||||
@ cdecl system(str) MSVCRT_system
|
||||
@ cdecl tan(double) MSVCRT_tan
|
||||
|
|
Loading…
Reference in New Issue