mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
uninstaller: Use WINAPIV calling convention for variadic functions.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6c4cea952f
commit
7c555f5c90
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ static void output_formatstring(const WCHAR *fmt, __ms_va_list va_args)
|
||||||
LocalFree(str);
|
LocalFree(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __cdecl output_message(unsigned int id, ...)
|
static void WINAPIV output_message(unsigned int id, ...)
|
||||||
{
|
{
|
||||||
WCHAR fmt[1024];
|
WCHAR fmt[1024];
|
||||||
__ms_va_list va_args;
|
__ms_va_list va_args;
|
||||||
|
@ -112,7 +112,7 @@ static void __cdecl output_message(unsigned int id, ...)
|
||||||
__ms_va_end(va_args);
|
__ms_va_end(va_args);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __cdecl output_array(WCHAR *fmt, ...)
|
static void WINAPIV output_array(WCHAR *fmt, ...)
|
||||||
{
|
{
|
||||||
__ms_va_list va_args;
|
__ms_va_list va_args;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue