ucrtbase: Implement wcstoull and _wcstoull_l.
Signed-off-by: Jactry Zeng <jzeng@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4eb71bc33a
commit
ca7ef97994
|
@ -63,7 +63,7 @@
|
|||
@ cdecl -ret64 _wcstoui64(wstr ptr long) ucrtbase._wcstoui64
|
||||
@ cdecl -ret64 _wcstoui64_l(wstr ptr long ptr) ucrtbase._wcstoui64_l
|
||||
@ cdecl _wcstoul_l(wstr ptr long ptr) ucrtbase._wcstoul_l
|
||||
@ stub _wcstoull_l
|
||||
@ cdecl -ret64 _wcstoull_l(wstr ptr long ptr) ucrtbase._wcstoull_l
|
||||
@ stub _wcstoumax_l
|
||||
@ cdecl _wctomb_l(ptr long ptr) ucrtbase._wctomb_l
|
||||
@ cdecl _wctomb_s_l(ptr ptr long long ptr) ucrtbase._wctomb_s_l
|
||||
|
@ -114,7 +114,7 @@
|
|||
@ cdecl wcstombs(ptr ptr long) ucrtbase.wcstombs
|
||||
@ cdecl wcstombs_s(ptr ptr long wstr long) ucrtbase.wcstombs_s
|
||||
@ cdecl wcstoul(wstr ptr long) ucrtbase.wcstoul
|
||||
@ stub wcstoull
|
||||
@ cdecl -ret64 wcstoull(wstr ptr long) ucrtbase.wcstoull
|
||||
@ stub wcstoumax
|
||||
@ cdecl wctob(long) ucrtbase.wctob
|
||||
@ cdecl wctomb(ptr long) ucrtbase.wctomb
|
||||
|
|
|
@ -1900,7 +1900,7 @@
|
|||
@ cdecl -ret64 _wcstoui64(wstr ptr long) MSVCRT__wcstoui64
|
||||
@ cdecl -ret64 _wcstoui64_l(wstr ptr long ptr) MSVCRT__wcstoui64_l
|
||||
@ cdecl _wcstoul_l(wstr ptr long ptr) MSVCRT__wcstoul_l
|
||||
@ stub _wcstoull_l
|
||||
@ cdecl -ret64 _wcstoull_l(wstr ptr long ptr) MSVCRT__wcstoui64_l
|
||||
@ stub _wcstoumax_l
|
||||
@ cdecl _wcsupr(wstr) ntdll._wcsupr
|
||||
@ cdecl _wcsupr_l(wstr ptr) MSVCRT__wcsupr_l
|
||||
|
@ -2480,7 +2480,7 @@
|
|||
@ cdecl wcstombs(ptr ptr long) MSVCRT_wcstombs
|
||||
@ cdecl wcstombs_s(ptr ptr long wstr long) MSVCRT_wcstombs_s
|
||||
@ cdecl wcstoul(wstr ptr long) MSVCRT_wcstoul
|
||||
@ stub wcstoull
|
||||
@ cdecl -ret64 wcstoull(wstr ptr long) MSVCRT__wcstoui64
|
||||
@ stub wcstoumax
|
||||
@ cdecl wcsxfrm(ptr wstr long) MSVCRT_wcsxfrm
|
||||
@ cdecl wctob(long) MSVCRT_wctob
|
||||
|
|
|
@ -1593,7 +1593,7 @@
|
|||
@ cdecl -ret64 _wcstoui64(wstr ptr long) msvcr120._wcstoui64
|
||||
@ cdecl -ret64 _wcstoui64_l(wstr ptr long ptr) msvcr120._wcstoui64_l
|
||||
@ cdecl _wcstoul_l(wstr ptr long ptr) msvcr120._wcstoul_l
|
||||
@ stub _wcstoull_l
|
||||
@ cdecl -ret64 _wcstoull_l(wstr ptr long ptr) msvcr120._wcstoull_l
|
||||
@ stub _wcstoumax_l
|
||||
@ cdecl _wcsupr(wstr) msvcr120._wcsupr
|
||||
@ cdecl _wcsupr_l(wstr ptr) msvcr120._wcsupr_l
|
||||
|
@ -2142,7 +2142,7 @@
|
|||
@ cdecl wcstombs(ptr ptr long) msvcr120.wcstombs
|
||||
@ cdecl wcstombs_s(ptr ptr long wstr long) msvcr120.wcstombs_s
|
||||
@ cdecl wcstoul(wstr ptr long) msvcr120.wcstoul
|
||||
@ stub wcstoull
|
||||
@ cdecl -ret64 wcstoull(wstr ptr long) msvcr120.wcstoull
|
||||
@ stub wcstoumax
|
||||
@ cdecl wcsxfrm(ptr wstr long) msvcr120.wcsxfrm
|
||||
@ cdecl wctob(long) msvcr120.wctob
|
||||
|
|
|
@ -2049,7 +2049,7 @@
|
|||
@ cdecl -ret64 _wcstoui64(wstr ptr long) MSVCRT__wcstoui64
|
||||
@ cdecl -ret64 _wcstoui64_l(wstr ptr long ptr) MSVCRT__wcstoui64_l
|
||||
@ cdecl _wcstoul_l(wstr ptr long ptr) MSVCRT__wcstoul_l
|
||||
@ stub _wcstoull_l
|
||||
@ cdecl -ret64 _wcstoull_l(wstr ptr long ptr) MSVCRT__wcstoui64_l
|
||||
@ stub _wcstoumax_l
|
||||
@ cdecl _wcsupr(wstr) ntdll._wcsupr
|
||||
@ cdecl _wcsupr_l(wstr ptr) MSVCRT__wcsupr_l
|
||||
|
@ -2587,7 +2587,7 @@
|
|||
@ cdecl wcstombs(ptr ptr long) MSVCRT_wcstombs
|
||||
@ cdecl wcstombs_s(ptr ptr long wstr long) MSVCRT_wcstombs_s
|
||||
@ cdecl wcstoul(wstr ptr long) MSVCRT_wcstoul
|
||||
@ stub wcstoull
|
||||
@ cdecl -ret64 wcstoull(wstr ptr long) MSVCRT__wcstoui64
|
||||
@ stub wcstoumax
|
||||
@ cdecl wcsxfrm(ptr wstr long) MSVCRT_wcsxfrm
|
||||
@ cdecl wctob(long) MSVCRT_wctob
|
||||
|
|
Loading…
Reference in New Issue