Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9183aec7
Commit
9183aec7
authored
Oct 25, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uninstaller: Use the standard va_list instead of __ms_va_list.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2c2e7550
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
main.c
programs/uninstaller/main.c
+7
-7
No files found.
programs/uninstaller/main.c
View file @
9183aec7
...
...
@@ -70,7 +70,7 @@ static void output_writeconsole(const WCHAR *str, DWORD len)
}
}
static
void
output_formatstring
(
const
WCHAR
*
fmt
,
__ms_
va_list
va_args
)
static
void
output_formatstring
(
const
WCHAR
*
fmt
,
va_list
va_args
)
{
WCHAR
*
str
;
DWORD
len
;
...
...
@@ -89,25 +89,25 @@ static void output_formatstring(const WCHAR *fmt, __ms_va_list va_args)
static
void
WINAPIV
output_message
(
unsigned
int
id
,
...)
{
WCHAR
fmt
[
1024
];
__ms_
va_list
va_args
;
va_list
va_args
;
if
(
!
LoadStringW
(
GetModuleHandleW
(
NULL
),
id
,
fmt
,
ARRAY_SIZE
(
fmt
)))
{
WINE_FIXME
(
"LoadString failed with %d
\n
"
,
GetLastError
());
return
;
}
__ms_
va_start
(
va_args
,
id
);
va_start
(
va_args
,
id
);
output_formatstring
(
fmt
,
va_args
);
__ms_
va_end
(
va_args
);
va_end
(
va_args
);
}
static
void
WINAPIV
output_array
(
const
WCHAR
*
fmt
,
...)
{
__ms_
va_list
va_args
;
va_list
va_args
;
__ms_
va_start
(
va_args
,
fmt
);
va_start
(
va_args
,
fmt
);
output_formatstring
(
fmt
,
va_args
);
__ms_
va_end
(
va_args
);
va_end
(
va_args
);
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment