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
2b9c01ee
Commit
2b9c01ee
authored
Jan 26, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Avoid dependency on COBJMACROS in generated code.
parent
9505b50c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
proxy.c
tools/widl/proxy.c
+6
-3
No files found.
tools/widl/proxy.c
View file @
2b9c01ee
...
...
@@ -401,9 +401,12 @@ static void gen_stub(type_t *iface, const func_t *cur, const char *cas,
fprintf
(
proxy
,
"
\n
"
);
print_proxy
(
""
);
if
(
has_ret
)
fprintf
(
proxy
,
"_RetVal = "
);
fprintf
(
proxy
,
"%s_"
,
iface
->
name
);
if
(
cas
)
fprintf
(
proxy
,
"%s_Stub"
,
cas
);
else
write_name
(
proxy
,
def
);
if
(
cas
)
fprintf
(
proxy
,
"%s_%s_Stub"
,
iface
->
name
,
cas
);
else
{
fprintf
(
proxy
,
"_This->lpVtbl->"
);
write_name
(
proxy
,
def
);
}
fprintf
(
proxy
,
"(_This"
);
if
(
cur
->
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