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
d0568d8c
Commit
d0568d8c
authored
Jun 19, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IDispatchEx support to HTMLGenericElement.
parent
d9cb62e3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
dispex.c
dlls/mshtml/dispex.c
+2
-0
htmlgeneric.c
dlls/mshtml/htmlgeneric.c
+18
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-0
No files found.
dlls/mshtml/dispex.c
View file @
d0568d8c
...
...
@@ -70,6 +70,7 @@ static REFIID tid_ids[] = {
&
DIID_DispHTMLDocument
,
&
DIID_DispHTMLDOMTextNode
,
&
DIID_DispHTMLElementCollection
,
&
DIID_DispHTMLGenericElement
,
&
DIID_DispHTMLImg
,
&
DIID_DispHTMLInputElement
,
&
DIID_DispHTMLOptionElement
,
...
...
@@ -89,6 +90,7 @@ static REFIID tid_ids[] = {
&
IID_IHTMLElement
,
&
IID_IHTMLElement2
,
&
IID_IHTMLElementCollection
,
&
IID_IHTMLGenericElement
,
&
IID_IHTMLImgElement
,
&
IID_IHTMLInputElement
,
&
IID_IHTMLOptionElement
,
...
...
dlls/mshtml/htmlgeneric.c
View file @
d0568d8c
...
...
@@ -157,6 +157,23 @@ static const NodeImplVtbl HTMLGenericElementImplVtbl = {
HTMLGenericElement_destructor
};
static
const
tid_t
HTMLGenericElement_iface_tids
[]
=
{
IHTMLDOMNode_tid
,
IHTMLDOMNode2_tid
,
IHTMLElement_tid
,
IHTMLElement2_tid
,
IHTMLElement2_tid
,
IHTMLGenericElement_tid
,
0
};
static
dispex_static_data_t
HTMLGenericElement_dispex
=
{
NULL
,
DispHTMLGenericElement_tid
,
NULL
,
HTMLGenericElement_iface_tids
};
HTMLElement
*
HTMLGenericElement_Create
(
nsIDOMHTMLElement
*
nselem
)
{
HTMLGenericElement
*
ret
;
...
...
@@ -166,6 +183,7 @@ HTMLElement *HTMLGenericElement_Create(nsIDOMHTMLElement *nselem)
ret
->
lpHTMLGenericElementVtbl
=
&
HTMLGenericElementVtbl
;
ret
->
element
.
node
.
vtbl
=
&
HTMLGenericElementImplVtbl
;
init_dispex
(
&
ret
->
element
.
node
.
dispex
,
(
IUnknown
*
)
HTMLGENERIC
(
ret
),
&
HTMLGenericElement_dispex
);
HTMLElement_Init
(
&
ret
->
element
);
return
&
ret
->
element
;
...
...
dlls/mshtml/mshtml_private.h
View file @
d0568d8c
...
...
@@ -66,6 +66,7 @@ typedef enum {
DispHTMLDocument_tid
,
DispHTMLDOMTextNode_tid
,
DispHTMLElementCollection_tid
,
DispHTMLGenericElement_tid
,
DispHTMLImg_tid
,
DispHTMLInputElement_tid
,
DispHTMLOptionElement_tid
,
...
...
@@ -85,6 +86,7 @@ typedef enum {
IHTMLElement_tid
,
IHTMLElement2_tid
,
IHTMLElementCollection_tid
,
IHTMLGenericElement_tid
,
IHTMLImgElement_tid
,
IHTMLInputElement_tid
,
IHTMLOptionElement_tid
,
...
...
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