mshtml.idl: Added HTMLHtmlElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-04-14 14:36:28 +02:00 committed by Alexandre Julliard
parent 735147ad80
commit 9111c8a0e2
2 changed files with 18 additions and 2 deletions

View File

@ -191,11 +191,11 @@ HRESULT HTMLTitleElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem
return S_OK;
}
typedef struct {
struct HTMLHtmlElement {
HTMLElement element;
IHTMLHtmlElement IHTMLHtmlElement_iface;
} HTMLHtmlElement;
};
static inline HTMLHtmlElement *impl_from_IHTMLHtmlElement(IHTMLHtmlElement *iface)
{

View File

@ -11648,6 +11648,22 @@ methods:
BSTR version();
}
/*****************************************************************************
* HTMLHtmlElement coclass
*/
[
noncreatable,
uuid(3050f491-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLHtmlElement
{
[default] dispinterface DispHTMLHtmlElement;
[source, default] dispinterface HTMLElementEvents;
[source] dispinterface HTMLElementEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLHtmlElement;
}
/*****************************************************************************
* DispHTMLHeadElement interface
*/