Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4fd8190e
Commit
4fd8190e
authored
Apr 20, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Use DECLSPEC_ALIGN in MSVC compatible way.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d2c736e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
typegen.c
tools/widl/typegen.c
+1
-1
No files found.
tools/widl/typegen.c
View file @
4fd8190e
...
...
@@ -4816,7 +4816,7 @@ void write_func_param_struct( FILE *file, const type_t *iface, const type_t *fun
if
(
align
>=
pointer_size
)
fprintf
(
file
,
"%s;
\n
"
,
arg
->
name
);
else
fprintf
(
file
,
"
%s DECLSPEC_ALIGN(%u);
\n
"
,
arg
->
name
,
pointer_siz
e
);
fprintf
(
file
,
"
DECLSPEC_ALIGN(%u) %s;
\n
"
,
pointer_size
,
arg
->
nam
e
);
}
if
(
add_retval
&&
!
is_void
(
retval
->
declspec
.
type
))
{
...
...
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