mshtml.idl: Added HTMLHeadElement 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:36 +02:00 committed by Alexandre Julliard
parent 9111c8a0e2
commit fd7f3b3405
2 changed files with 19 additions and 2 deletions

View File

@ -374,11 +374,11 @@ HRESULT HTMLHtmlElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem,
return S_OK;
}
typedef struct {
struct HTMLHeadElement {
HTMLElement element;
IHTMLHeadElement IHTMLHeadElement_iface;
} HTMLHeadElement;
};
static inline HTMLHeadElement *impl_from_IHTMLHeadElement(IHTMLHeadElement *iface)
{

View File

@ -11690,6 +11690,23 @@ methods:
BSTR ie8_profile();
}
/*****************************************************************************
* HTMLHeadElement coclass
*/
[
noncreatable,
uuid(3050f493-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLHeadElement
{
[default] dispinterface DispHTMLHeadElement;
[source, default] dispinterface HTMLElementEvents;
[source] dispinterface HTMLElementEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLHeadElement;
interface IHTMLHeadElement2;
}
/*****************************************************************************
* DispHTMLTitleElement interface
*/