ucrtbase: Added __stdio_common_vswprintf_s().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0312726b46
commit
b6fd195279
|
@ -17,7 +17,7 @@
|
|||
@ cdecl __stdio_common_vsscanf(int64 ptr long ptr ptr ptr) ucrtbase.__stdio_common_vsscanf
|
||||
@ cdecl __stdio_common_vswprintf(int64 ptr long ptr ptr ptr) ucrtbase.__stdio_common_vswprintf
|
||||
@ stub __stdio_common_vswprintf_p
|
||||
@ stub __stdio_common_vswprintf_s
|
||||
@ cdecl __stdio_common_vswprintf_s(int64 ptr long wstr ptr ptr) ucrtbase.__stdio_common_vswprintf_s
|
||||
@ stub __stdio_common_vswscanf
|
||||
@ cdecl _chsize(long long) ucrtbase._chsize
|
||||
@ cdecl _chsize_s(long int64) ucrtbase._chsize_s
|
||||
|
|
|
@ -941,6 +941,16 @@ int CDECL MSVCRT__stdio_common_vsnwprintf_s( unsigned __int64 options,
|
|||
return MSVCRT_vsnwprintf_s_l_opt(str, sizeOfBuffer, count, format, options & UCRTBASE_PRINTF_MASK, locale, valist);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* __stdio_common_vswprintf_s (MSVCRT.@)
|
||||
*/
|
||||
int CDECL MSVCRT__stdio_common_vswprintf_s( unsigned __int64 options,
|
||||
MSVCRT_wchar_t *str, MSVCRT_size_t count, const MSVCRT_wchar_t *format,
|
||||
MSVCRT__locale_t locale, __ms_va_list valist )
|
||||
{
|
||||
return MSVCRT__stdio_common_vsnwprintf_s(options, str, INT_MAX, count, format, locale, valist);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* __stdio_common_vsprintf_s (MSVCRT.@)
|
||||
*/
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
@ cdecl __stdio_common_vsscanf(int64 ptr long ptr ptr ptr) MSVCRT__stdio_common_vsscanf
|
||||
@ cdecl __stdio_common_vswprintf(int64 ptr long ptr ptr ptr) MSVCRT__stdio_common_vswprintf
|
||||
@ stub __stdio_common_vswprintf_p
|
||||
@ stub __stdio_common_vswprintf_s
|
||||
@ cdecl __stdio_common_vswprintf_s(int64 ptr long wstr ptr ptr) MSVCRT__stdio_common_vswprintf_s
|
||||
@ stub __stdio_common_vswscanf
|
||||
@ stub __strncnt
|
||||
@ cdecl __sys_errlist()
|
||||
|
|
Loading…
Reference in New Issue