net: Use WINAPIV calling convention for variadic functions.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-11-02 10:21:10 +01:00
parent 308bf48b73
commit 399feae786
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ static int output_vprintf(const WCHAR* fmt, __ms_va_list va_args)
return 0;
}
static int __cdecl output_printf(const WCHAR* fmt, ...)
static int WINAPIV output_printf(const WCHAR* fmt, ...)
{
__ms_va_list arguments;
@ -80,7 +80,7 @@ static int __cdecl output_printf(const WCHAR* fmt, ...)
return 0;
}
static int __cdecl output_string(int msg, ...)
static int WINAPIV output_string(int msg, ...)
{
WCHAR fmt[8192];
__ms_va_list arguments;