Commit 630b9f8e authored by Bartosz Kosiorek's avatar Bartosz Kosiorek Committed by Alexandre Julliard

msvcrt: Add _fwprintf_p implementation.

parent 33551b28
......@@ -863,7 +863,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr)
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr)
......
......@@ -1210,7 +1210,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr)
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr)
......
......@@ -1211,7 +1211,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr)
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr)
......
......@@ -1140,7 +1140,7 @@
@ cdecl _futime32(long ptr) msvcr120._futime32
@ cdecl _futime64(long ptr) msvcr120._futime64
@ varargs _fwprintf_l(ptr wstr ptr) msvcr120._fwprintf_l
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr) msvcr120._fwprintf_p
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr) msvcr120._fwrite_nolock
......
......@@ -529,7 +529,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr)
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr)
......
......@@ -512,7 +512,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
@ stub _fwprintf_p
@ varargs _fwprintf_p(ptr wstr)
@ stub _fwprintf_p_l
@ stub _fwprintf_s_l
@ cdecl _fwrite_nolock(ptr long long ptr)
......
......@@ -5674,6 +5674,20 @@ int WINAPIV _fwprintf_l(FILE* file, const wchar_t *format, _locale_t locale, ...
}
/*********************************************************************
* _fwprintf_p (MSVCRT.@)
*/
int WINAPIV _fwprintf_p(FILE* file, const wchar_t *format, ...)
{
va_list valist;
int res;
va_start(valist, format);
res = _vfwprintf_p_l(file, format, NULL, valist);
va_end(valist);
return res;
}
/*********************************************************************
* printf (MSVCRT.@)
*/
int WINAPIV printf(const char *format, ...)
......
......@@ -495,7 +495,7 @@
@ cdecl _futime32(long ptr)
@ cdecl _futime64(long ptr)
@ varargs _fwprintf_l(ptr wstr ptr)
# stub _fwprintf_p(ptr wstr)
@ varargs _fwprintf_p(ptr wstr)
# stub _fwprintf_p_l(ptr wstr ptr)
# stub _fwprintf_s_l(ptr wstr ptr)
@ varargs _fwscanf_l(ptr 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