Commit 85900230 authored by Bartosz Kosiorek's avatar Bartosz Kosiorek Committed by Alexandre Julliard

msvcrt: Add _vcwprintf_l implementation.

parent af7aaba0
...@@ -1428,7 +1428,7 @@ ...@@ -1428,7 +1428,7 @@
@ stub _vcprintf_s @ stub _vcprintf_s
@ stub _vcprintf_s_l @ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
@ stub _vcwprintf_l @ cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p @ stub _vcwprintf_p
@ stub _vcwprintf_p_l @ stub _vcwprintf_p_l
@ stub _vcwprintf_s @ stub _vcwprintf_s
......
...@@ -1785,7 +1785,7 @@ ...@@ -1785,7 +1785,7 @@
@ stub _vcprintf_s @ stub _vcprintf_s
@ stub _vcprintf_s_l @ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
@ stub _vcwprintf_l @ cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p @ stub _vcwprintf_p
@ stub _vcwprintf_p_l @ stub _vcwprintf_p_l
@ stub _vcwprintf_s @ stub _vcwprintf_s
......
...@@ -1804,7 +1804,7 @@ ...@@ -1804,7 +1804,7 @@
@ stub _vcprintf_s @ stub _vcprintf_s
@ stub _vcprintf_s_l @ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
@ stub _vcwprintf_l @ cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p @ stub _vcwprintf_p
@ stub _vcwprintf_p_l @ stub _vcwprintf_p_l
@ stub _vcwprintf_s @ stub _vcwprintf_s
......
...@@ -1108,7 +1108,7 @@ ...@@ -1108,7 +1108,7 @@
@ stub _vcprintf_s @ stub _vcprintf_s
@ stub _vcprintf_s_l @ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
@ stub _vcwprintf_l @ cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p @ stub _vcwprintf_p
@ stub _vcwprintf_p_l @ stub _vcwprintf_p_l
@ stub _vcwprintf_s @ stub _vcwprintf_s
......
...@@ -1083,7 +1083,7 @@ ...@@ -1083,7 +1083,7 @@
@ stub _vcprintf_s @ stub _vcprintf_s
@ stub _vcprintf_s_l @ stub _vcprintf_s_l
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
@ stub _vcwprintf_l @ cdecl _vcwprintf_l(wstr ptr ptr)
@ stub _vcwprintf_p @ stub _vcwprintf_p
@ stub _vcwprintf_p_l @ stub _vcwprintf_p_l
@ stub _vcwprintf_s @ stub _vcwprintf_s
......
...@@ -555,6 +555,13 @@ int WINAPIV _cprintf(const char* format, ...) ...@@ -555,6 +555,13 @@ int WINAPIV _cprintf(const char* format, ...)
return retval; return retval;
} }
/*********************************************************************
* _vcwprintf_l (MSVCRT.@)
*/
int CDECL _vcwprintf_l(const wchar_t* format, _locale_t locale, va_list valist)
{
return pf_printf_w(puts_clbk_console_w, NULL, format, locale, 0, arg_clbk_valist, NULL, &valist);
}
/********************************************************************* /*********************************************************************
* _vcwprintf (MSVCRT.@) * _vcwprintf (MSVCRT.@)
......
...@@ -1042,7 +1042,7 @@ ...@@ -1042,7 +1042,7 @@
# stub _vcprintf_s(str ptr) # stub _vcprintf_s(str ptr)
# stub _vcprintf_s_l(str ptr ptr) # stub _vcprintf_s_l(str ptr ptr)
@ cdecl _vcwprintf(wstr ptr) @ cdecl _vcwprintf(wstr ptr)
# stub _vcwprintf_l(wstr ptr ptr) @ cdecl _vcwprintf_l(wstr ptr ptr)
# stub _vcwprintf_p(wstr ptr) # stub _vcwprintf_p(wstr ptr)
# stub _vcwprintf_p_l(wstr ptr ptr) # stub _vcwprintf_p_l(wstr ptr ptr)
# stub _vcwprintf_s(wstr ptr) # stub _vcwprintf_s(wstr ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment