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
03683b25
Commit
03683b25
authored
Sep 16, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Use DISPATCH_HREF_MASK even for non-dual dispatch types.
parent
004ad9af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
typelib.c
dlls/oleaut32/tests/typelib.c
+1
-1
typelib.c
dlls/oleaut32/typelib.c
+1
-2
No files found.
dlls/oleaut32/tests/typelib.c
View file @
03683b25
...
...
@@ -923,7 +923,7 @@ if(use_midl_tlb) {
href
=
U
(
pFD
->
lprgelemdescParam
[
0
].
tdesc
).
hreftype
;
ok
((
href
&
0xff000000
)
==
0x04000000
,
"href 0x%08x
\n
"
,
href
);
hr
=
ITypeInfo_GetRefTypeInfo
(
pTI
,
href
,
&
pTI_p
);
todo_wine
ok
(
SUCCEEDED
(
hr
),
"hr %08x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
),
"hr %08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
ITypeInfo_Release
(
pTI_p
);
ITypeInfo_ReleaseFuncDesc
(
pTI
,
pFD
);
}
...
...
dlls/oleaut32/typelib.c
View file @
03683b25
...
...
@@ -6722,8 +6722,7 @@ static HRESULT WINAPI ITypeInfo_fnGetRefTypeInfo(
result
=
S_OK
;
}
else
if
((
hRefType
!=
-
1
)
&&
(
hRefType
&
DISPATCH_HREF_MASK
)
&&
(
This
->
TypeAttr
.
typekind
==
TKIND_DISPATCH
)
&&
(
This
->
TypeAttr
.
wTypeFlags
&
TYPEFLAG_FDUAL
))
(
This
->
TypeAttr
.
typekind
==
TKIND_DISPATCH
))
{
HREFTYPE
href_dispatch
=
hRefType
;
result
=
ITypeInfoImpl_GetDispatchRefTypeInfo
((
ITypeInfo
*
)
iface
,
&
href_dispatch
,
ppTInfo
);
...
...
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