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
65ca6a2f
Commit
65ca6a2f
authored
Oct 02, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Oct 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Make ITypeInfo::GetDocumentation work for functions/variables in inherited interfaces.
parent
1a2aa7ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
typelib.c
dlls/oleaut32/typelib.c
+17
-0
No files found.
dlls/oleaut32/typelib.c
View file @
65ca6a2f
...
...
@@ -5579,6 +5579,23 @@ static HRESULT WINAPI ITypeInfo_fnGetDocumentation( ITypeInfo2 *iface,
return
S_OK
;
}
}
if
(
This
->
TypeAttr
.
cImplTypes
&&
(
This
->
TypeAttr
.
typekind
==
TKIND_INTERFACE
||
This
->
TypeAttr
.
typekind
==
TKIND_DISPATCH
))
{
/* recursive search */
ITypeInfo
*
pTInfo
;
HRESULT
result
;
result
=
ITypeInfo_GetRefTypeInfo
(
iface
,
This
->
impltypelist
->
hRef
,
&
pTInfo
);
if
(
SUCCEEDED
(
result
))
{
result
=
ITypeInfo_GetDocumentation
(
pTInfo
,
memid
,
pBstrName
,
pBstrDocString
,
pdwHelpContext
,
pBstrHelpFile
);
ITypeInfo_Release
(
pTInfo
);
return
result
;
}
WARN
(
"Could not search inherited interface!
\n
"
);
}
WARN
(
"member %ld not found
\n
"
,
memid
);
return
TYPE_E_ELEMENTNOTFOUND
;
}
...
...
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