Commit fd7f3b34 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLHeadElement coclass declaration.

parent 9111c8a0
...@@ -374,11 +374,11 @@ HRESULT HTMLHtmlElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem, ...@@ -374,11 +374,11 @@ HRESULT HTMLHtmlElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem,
return S_OK; return S_OK;
} }
typedef struct { struct HTMLHeadElement {
HTMLElement element; HTMLElement element;
IHTMLHeadElement IHTMLHeadElement_iface; IHTMLHeadElement IHTMLHeadElement_iface;
} HTMLHeadElement; };
static inline HTMLHeadElement *impl_from_IHTMLHeadElement(IHTMLHeadElement *iface) static inline HTMLHeadElement *impl_from_IHTMLHeadElement(IHTMLHeadElement *iface)
{ {
......
...@@ -11691,6 +11691,23 @@ methods: ...@@ -11691,6 +11691,23 @@ methods:
} }
/***************************************************************************** /*****************************************************************************
* 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 * DispHTMLTitleElement interface
*/ */
[ [
......
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