Commit 399feae7 authored by Alexandre Julliard's avatar Alexandre Julliard

net: Use WINAPIV calling convention for variadic functions.

parent 308bf48b
...@@ -70,7 +70,7 @@ static int output_vprintf(const WCHAR* fmt, __ms_va_list va_args) ...@@ -70,7 +70,7 @@ static int output_vprintf(const WCHAR* fmt, __ms_va_list va_args)
return 0; return 0;
} }
static int __cdecl output_printf(const WCHAR* fmt, ...) static int WINAPIV output_printf(const WCHAR* fmt, ...)
{ {
__ms_va_list arguments; __ms_va_list arguments;
...@@ -80,7 +80,7 @@ static int __cdecl output_printf(const WCHAR* fmt, ...) ...@@ -80,7 +80,7 @@ static int __cdecl output_printf(const WCHAR* fmt, ...)
return 0; return 0;
} }
static int __cdecl output_string(int msg, ...) static int WINAPIV output_string(int msg, ...)
{ {
WCHAR fmt[8192]; WCHAR fmt[8192];
__ms_va_list arguments; __ms_va_list arguments;
......
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