Commit cf86ff8f authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

mshtml: Add missing IDispatchEx tids.

parent 48e493c9
...@@ -66,6 +66,7 @@ static struct list dispex_data_list = LIST_INIT(dispex_data_list); ...@@ -66,6 +66,7 @@ static struct list dispex_data_list = LIST_INIT(dispex_data_list);
static REFIID tid_ids[] = { static REFIID tid_ids[] = {
&IID_NULL, &IID_NULL,
&DIID_DispDOMChildrenCollection, &DIID_DispDOMChildrenCollection,
&DIID_DispHTMLBody,
&DIID_DispHTMLCommentElement, &DIID_DispHTMLCommentElement,
&DIID_DispHTMLDocument, &DIID_DispHTMLDocument,
&DIID_DispHTMLDOMTextNode, &DIID_DispHTMLDOMTextNode,
...@@ -78,7 +79,10 @@ static REFIID tid_ids[] = { ...@@ -78,7 +79,10 @@ static REFIID tid_ids[] = {
&DIID_DispHTMLStyle, &DIID_DispHTMLStyle,
&DIID_DispHTMLUnknownElement, &DIID_DispHTMLUnknownElement,
&DIID_DispHTMLWindow2, &DIID_DispHTMLWindow2,
&IID_IHTMLBodyElement,
&IID_IHTMLBodyElement2,
&IID_IHTMLCommentElement, &IID_IHTMLCommentElement,
&IID_IHTMLControlElement,
&IID_IHTMLDocument2, &IID_IHTMLDocument2,
&IID_IHTMLDocument3, &IID_IHTMLDocument3,
&IID_IHTMLDocument4, &IID_IHTMLDocument4,
...@@ -89,6 +93,8 @@ static REFIID tid_ids[] = { ...@@ -89,6 +93,8 @@ static REFIID tid_ids[] = {
&IID_IHTMLDOMTextNode, &IID_IHTMLDOMTextNode,
&IID_IHTMLElement, &IID_IHTMLElement,
&IID_IHTMLElement2, &IID_IHTMLElement2,
&IID_IHTMLElement3,
&IID_IHTMLElement4,
&IID_IHTMLElementCollection, &IID_IHTMLElementCollection,
&IID_IHTMLGenericElement, &IID_IHTMLGenericElement,
&IID_IHTMLImgElement, &IID_IHTMLImgElement,
...@@ -96,6 +102,8 @@ static REFIID tid_ids[] = { ...@@ -96,6 +102,8 @@ static REFIID tid_ids[] = {
&IID_IHTMLOptionElement, &IID_IHTMLOptionElement,
&IID_IHTMLSelectElement, &IID_IHTMLSelectElement,
&IID_IHTMLStyle, &IID_IHTMLStyle,
&IID_IHTMLTextContainer,
&IID_IHTMLUniqueName,
&IID_IHTMLWindow2, &IID_IHTMLWindow2,
&IID_IHTMLWindow3, &IID_IHTMLWindow3,
&IID_IOmNavigator &IID_IOmNavigator
......
...@@ -62,6 +62,7 @@ typedef struct event_target_t event_target_t; ...@@ -62,6 +62,7 @@ typedef struct event_target_t event_target_t;
typedef enum { typedef enum {
NULL_tid, NULL_tid,
DispDOMChildrenCollection_tid, DispDOMChildrenCollection_tid,
DispHTMLBody_tid,
DispHTMLCommentElement_tid, DispHTMLCommentElement_tid,
DispHTMLDocument_tid, DispHTMLDocument_tid,
DispHTMLDOMTextNode_tid, DispHTMLDOMTextNode_tid,
...@@ -74,7 +75,10 @@ typedef enum { ...@@ -74,7 +75,10 @@ typedef enum {
DispHTMLStyle_tid, DispHTMLStyle_tid,
DispHTMLUnknownElement_tid, DispHTMLUnknownElement_tid,
DispHTMLWindow2_tid, DispHTMLWindow2_tid,
IHTMLBodyElement_tid,
IHTMLBodyElement2_tid,
IHTMLCommentElement_tid, IHTMLCommentElement_tid,
IHTMLControlElement_tid,
IHTMLDocument2_tid, IHTMLDocument2_tid,
IHTMLDocument3_tid, IHTMLDocument3_tid,
IHTMLDocument4_tid, IHTMLDocument4_tid,
...@@ -85,6 +89,8 @@ typedef enum { ...@@ -85,6 +89,8 @@ typedef enum {
IHTMLDOMTextNode_tid, IHTMLDOMTextNode_tid,
IHTMLElement_tid, IHTMLElement_tid,
IHTMLElement2_tid, IHTMLElement2_tid,
IHTMLElement3_tid,
IHTMLElement4_tid,
IHTMLElementCollection_tid, IHTMLElementCollection_tid,
IHTMLGenericElement_tid, IHTMLGenericElement_tid,
IHTMLImgElement_tid, IHTMLImgElement_tid,
...@@ -92,6 +98,8 @@ typedef enum { ...@@ -92,6 +98,8 @@ typedef enum {
IHTMLOptionElement_tid, IHTMLOptionElement_tid,
IHTMLSelectElement_tid, IHTMLSelectElement_tid,
IHTMLStyle_tid, IHTMLStyle_tid,
IHTMLTextContainer_tid,
IHTMLUniqueName_tid,
IHTMLWindow2_tid, IHTMLWindow2_tid,
IHTMLWindow3_tid, IHTMLWindow3_tid,
IOmNavigator_tid, IOmNavigator_tid,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment