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
e0408dd8
Commit
e0408dd8
authored
Apr 18, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use DispHTMLDOMImplementation for IDispatchEx implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c06af484
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-0
omnavigator.c
dlls/mshtml/omnavigator.c
+1
-1
dom.c
dlls/mshtml/tests/dom.c
+2
-0
No files found.
dlls/mshtml/mshtml_private.h
View file @
e0408dd8
...
...
@@ -95,6 +95,7 @@ typedef struct EventTarget EventTarget;
XDIID(DispHTMLCurrentStyle) \
XDIID(DispHTMLDocument) \
XDIID(DispHTMLDOMAttribute) \
XDIID(DispHTMLDOMImplementation) \
XDIID(DispHTMLDOMTextNode) \
XDIID(DispHTMLElementCollection) \
XDIID(DispHTMLEmbed) \
...
...
@@ -171,6 +172,7 @@ typedef struct EventTarget EventTarget;
XIID(IHTMLDOMAttribute2) \
XIID(IHTMLDOMChildrenCollection) \
XIID(IHTMLDOMImplementation) \
XIID(IHTMLDOMImplementation2) \
XIID(IHTMLDOMNode) \
XIID(IHTMLDOMNode2) \
XIID(IHTMLDOMNode3) \
...
...
dlls/mshtml/omnavigator.c
View file @
e0408dd8
...
...
@@ -306,7 +306,7 @@ static const tid_t HTMLDOMImplementation_iface_tids[] = {
};
static
dispex_static_data_t
HTMLDOMImplementation_dispex
=
{
NULL
,
I
HTMLDOMImplementation_tid
,
Disp
HTMLDOMImplementation_tid
,
HTMLDOMImplementation_iface_tids
};
...
...
dlls/mshtml/tests/dom.c
View file @
e0408dd8
...
...
@@ -7010,6 +7010,8 @@ static void test_dom_implementation(IHTMLDocument2 *doc)
IHTMLWindow2
*
window
;
IDispatch
*
disp
;
test_disp
((
IUnknown
*
)
dom_implementation
,
&
DIID_DispHTMLDOMImplementation
,
NULL
,
"[object]"
);
str
=
a2bstr
(
"test"
);
hres
=
IHTMLDOMImplementation2_createHTMLDocument
(
dom_implementation2
,
str
,
&
new_document
);
ok
(
hres
==
S_OK
,
"createHTMLDocument failed: %08x
\n
"
,
hres
);
...
...
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