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
2ffd106b
Commit
2ffd106b
authored
Nov 09, 2018
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Make MIDL_DEFINE_GUID more compatible with midl.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d7bb33be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
widl.c
tools/widl/widl.c
+6
-1
No files found.
tools/widl/widl.c
View file @
2ffd106b
...
...
@@ -523,10 +523,15 @@ void write_id_data(const statement_list_t *stmts)
fprintf
(
idfile
,
"#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
\\\n
"
);
fprintf
(
idfile
,
" DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
\n\n
"
);
fprintf
(
idfile
,
"#elif defined(__cplusplus)
\n\n
"
);
fprintf
(
idfile
,
"#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
\\\n
"
);
fprintf
(
idfile
,
" EXTERN_C const type DECLSPEC_SELECTANY name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
\n\n
"
);
fprintf
(
idfile
,
"#else
\n\n
"
);
fprintf
(
idfile
,
"#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
\\\n
"
);
fprintf
(
idfile
,
" const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
\n\n
"
);
fprintf
(
idfile
,
" const type
DECLSPEC_SELECTANY
name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
\n\n
"
);
fprintf
(
idfile
,
"#endif
\n\n
"
);
start_cplusplus_guard
(
idfile
);
...
...
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