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
2f5c578d
Commit
2f5c578d
authored
Dec 03, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Output registration information also for IUnknown.
parent
2bf6305a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
register.c
tools/widl/register.c
+7
-2
No files found.
tools/widl/register.c
View file @
2f5c578d
...
@@ -65,9 +65,14 @@ static int write_interface( const type_t *iface )
...
@@ -65,9 +65,14 @@ static int write_interface( const type_t *iface )
{
{
const
UUID
*
uuid
=
get_attrp
(
iface
->
attrs
,
ATTR_UUID
);
const
UUID
*
uuid
=
get_attrp
(
iface
->
attrs
,
ATTR_UUID
);
if
(
!
type_iface_get_inherit
(
iface
))
return
0
;
if
(
!
need_proxy
(
iface
))
return
0
;
if
(
!
uuid
)
return
0
;
if
(
!
uuid
)
return
0
;
if
(
!
is_object
(
iface
))
return
0
;
if
(
!
type_iface_get_inherit
(
iface
))
/* special case for IUnknown */
{
put_str
(
indent
,
"ForceRemove '%s' = s '%s'
\n
"
,
format_uuid
(
uuid
),
iface
->
name
);
return
0
;
}
if
(
is_local
(
iface
->
attrs
))
return
0
;
put_str
(
indent
,
"ForceRemove '%s' = s '%s'
\n
"
,
format_uuid
(
uuid
),
iface
->
name
);
put_str
(
indent
,
"ForceRemove '%s' = s '%s'
\n
"
,
format_uuid
(
uuid
),
iface
->
name
);
put_str
(
indent
,
"{
\n
"
);
put_str
(
indent
,
"{
\n
"
);
indent
++
;
indent
++
;
...
...
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