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
630252c1
Commit
630252c1
authored
Sep 30, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IDispatchEx support to IHTMLTable.
parent
ea364136
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
3 deletions
+24
-3
dispex.c
dlls/mshtml/dispex.c
+2
-0
htmltable.c
dlls/mshtml/htmltable.c
+19
-2
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-0
dom.c
dlls/mshtml/tests/dom.c
+1
-1
No files found.
dlls/mshtml/dispex.c
View file @
630252c1
...
...
@@ -77,6 +77,7 @@ static REFIID tid_ids[] = {
&
DIID_DispHTMLOptionElement
,
&
DIID_DispHTMLSelectElement
,
&
DIID_DispHTMLStyle
,
&
DIID_DispHTMLTable
,
&
DIID_DispHTMLTableRow
,
&
DIID_DispHTMLUnknownElement
,
&
DIID_DispHTMLWindow2
,
...
...
@@ -103,6 +104,7 @@ static REFIID tid_ids[] = {
&
IID_IHTMLOptionElement
,
&
IID_IHTMLSelectElement
,
&
IID_IHTMLStyle
,
&
IID_IHTMLTable
,
&
IID_IHTMLTableRow
,
&
IID_IHTMLTextContainer
,
&
IID_IHTMLUniqueName
,
...
...
dlls/mshtml/htmltable.c
View file @
630252c1
...
...
@@ -539,15 +539,32 @@ static const NodeImplVtbl HTMLTableImplVtbl = {
HTMLTable_destructor
};
static
const
tid_t
HTMLTable_iface_tids
[]
=
{
IHTMLDOMNode_tid
,
IHTMLDOMNode2_tid
,
IHTMLElement_tid
,
IHTMLElement2_tid
,
IHTMLTable_tid
,
0
};
static
dispex_static_data_t
HTMLTable_dispex
=
{
NULL
,
DispHTMLTable_tid
,
NULL
,
HTMLTable_iface_tids
};
HTMLElement
*
HTMLTable_Create
(
nsIDOMHTMLElement
*
nselem
)
{
HTMLTable
*
ret
=
heap_alloc_zero
(
sizeof
(
HTMLTable
));
HTMLElement_Init
(
&
ret
->
element
);
ret
->
element
.
node
.
vtbl
=
&
HTMLTableImplVtbl
;
ret
->
lpHTMLTableVtbl
=
&
HTMLTableVtbl
;
init_dispex
(
&
ret
->
element
.
node
.
dispex
,
(
IUnknown
*
)
HTMLTABLE
(
ret
),
&
HTMLTable_dispex
);
HTMLElement_Init
(
&
ret
->
element
);
ConnectionPoint_Init
(
&
ret
->
cp
,
&
ret
->
element
.
cp_container
,
&
DIID_HTMLTableEvents
);
return
&
ret
->
element
;
...
...
dlls/mshtml/mshtml_private.h
View file @
630252c1
...
...
@@ -73,6 +73,7 @@ typedef enum {
DispHTMLOptionElement_tid
,
DispHTMLSelectElement_tid
,
DispHTMLStyle_tid
,
DispHTMLTable_tid
,
DispHTMLTableRow_tid
,
DispHTMLUnknownElement_tid
,
DispHTMLWindow2_tid
,
...
...
@@ -99,6 +100,7 @@ typedef enum {
IHTMLOptionElement_tid
,
IHTMLSelectElement_tid
,
IHTMLStyle_tid
,
IHTMLTable_tid
,
IHTMLTableRow_tid
,
IHTMLTextContainer_tid
,
IHTMLUniqueName_tid
,
...
...
dlls/mshtml/tests/dom.c
View file @
630252c1
...
...
@@ -279,7 +279,7 @@ static const elem_type_info_t elem_type_infos[] = {
{
"BLOCKQUOTE"
,
elem_iids
,
NULL
},
{
"P"
,
elem_iids
,
NULL
},
{
"BR"
,
elem_iids
,
NULL
},
{
"TABLE"
,
table_iids
,
NULL
},
{
"TABLE"
,
table_iids
,
&
DIID_DispHTMLTable
},
{
"TBODY"
,
elem_iids
,
NULL
},
{
"SCRIPT"
,
script_iids
,
NULL
},
{
"TEST"
,
elem_iids
,
&
DIID_DispHTMLUnknownElement
},
...
...
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