Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e00425e6
Commit
e00425e6
authored
Aug 12, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Aug 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: IXMLDOMElement doesn't support IObjectIdentity.
parent
a1ab2df1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
dispex.c
dlls/msxml3/dispex.c
+3
-0
domdoc.c
dlls/msxml3/tests/domdoc.c
+4
-0
No files found.
dlls/msxml3/dispex.c
View file @
e00425e6
...
...
@@ -634,6 +634,9 @@ BOOL dispex_query_interface(DispatchEx *This, REFIID riid, void **ppv)
}
else
if
(
IsEqualGUID
(
&
IID_UndocumentedScriptIface
,
riid
))
{
TRACE
(
"(%p)->(IID_UndocumentedScriptIface %p) returning NULL
\n
"
,
This
,
ppv
);
*
ppv
=
NULL
;
}
else
if
(
IsEqualGUID
(
&
IID_IObjectIdentity
,
riid
))
{
TRACE
(
"IID_IObjectIdentity not supported returning NULL
\n
"
);
*
ppv
=
NULL
;
}
else
{
return
FALSE
;
}
...
...
dlls/msxml3/tests/domdoc.c
View file @
e00425e6
...
...
@@ -514,8 +514,12 @@ static void test_domdoc( void )
ok
(
r
==
S_OK
,
"should be a document element
\n
"
);
if
(
element
)
{
IObjectIdentity
*
ident
;
BSTR
tag
=
NULL
;
r
=
IXMLDOMElement_QueryInterface
(
element
,
&
IID_IObjectIdentity
,
(
LPVOID
*
)
&
ident
);
ok
(
r
==
E_NOINTERFACE
,
"ret %08x
\n
"
,
r
);
/* check if the tag is correct */
r
=
IXMLDOMElement_get_tagName
(
element
,
&
tag
);
ok
(
r
==
S_OK
,
"couldn't get tag name
\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