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
4b2d7e93
Commit
4b2d7e93
authored
Sep 29, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Use CONST_VTBL to declare lpVtbl.
parent
222c1679
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
header.c
tools/widl/header.c
+2
-2
No files found.
tools/widl/header.c
View file @
4b2d7e93
...
...
@@ -847,7 +847,7 @@ static void write_com_interface(type_t *iface)
fprintf
(
header
,
" END_INTERFACE
\n
"
);
fprintf
(
header
,
"} %sVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"interface %s {
\n
"
,
iface
->
name
);
fprintf
(
header
,
"
const
%sVtbl* lpVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"
CONST_VTBL
%sVtbl* lpVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"};
\n
"
);
fprintf
(
header
,
"
\n
"
);
fprintf
(
header
,
"#ifdef COBJMACROS
\n
"
);
...
...
@@ -932,7 +932,7 @@ void write_dispinterface(type_t *iface)
fprintf
(
header
,
" END_INTERFACE
\n
"
);
fprintf
(
header
,
"} %sVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"interface %s {
\n
"
,
iface
->
name
);
fprintf
(
header
,
"
const
%sVtbl* lpVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"
CONST_VTBL
%sVtbl* lpVtbl;
\n
"
,
iface
->
name
);
fprintf
(
header
,
"};
\n
"
);
fprintf
(
header
,
"
\n
"
);
fprintf
(
header
,
"#ifdef COBJMACROS
\n
"
);
...
...
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