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
9abdf54c
Commit
9abdf54c
authored
Sep 09, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement ITypeLibComp::BindType.
parent
0f84fd26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
typelib.c
dlls/oleaut32/typelib.c
+23
-2
No files found.
dlls/oleaut32/typelib.c
View file @
9abdf54c
...
...
@@ -4835,8 +4835,29 @@ static HRESULT WINAPI ITypeLibComp_fnBindType(
ITypeInfo
**
ppTInfo
,
ITypeComp
**
ppTComp
)
{
FIXME
(
"(%s, %x, %p, %p): stub
\n
"
,
debugstr_w
(
szName
),
lHash
,
ppTInfo
,
ppTComp
);
return
E_NOTIMPL
;
ITypeLibImpl
*
This
=
impl_from_ITypeComp
(
iface
);
ITypeInfoImpl
*
pTypeInfo
;
TRACE
(
"(%s, %x, %p, %p)
\n
"
,
debugstr_w
(
szName
),
lHash
,
ppTInfo
,
ppTComp
);
for
(
pTypeInfo
=
This
->
pTypeInfo
;
pTypeInfo
;
pTypeInfo
=
pTypeInfo
->
next
)
{
/* FIXME: should use lHash to do the search */
if
(
pTypeInfo
->
Name
&&
!
strcmpW
(
pTypeInfo
->
Name
,
szName
))
{
TRACE
(
"returning %p
\n
"
,
pTypeInfo
);
*
ppTInfo
=
(
ITypeInfo
*
)
&
pTypeInfo
->
lpVtbl
;
ITypeInfo_AddRef
(
*
ppTInfo
);
*
ppTComp
=
(
ITypeComp
*
)
&
pTypeInfo
->
lpVtblTypeComp
;
ITypeComp_AddRef
(
*
ppTComp
);
return
S_OK
;
}
}
TRACE
(
"not found
\n
"
);
*
ppTInfo
=
NULL
;
*
ppTComp
=
NULL
;
return
S_OK
;
}
static
const
ITypeCompVtbl
tlbtcvt
=
...
...
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