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:
parent
9111c8a0e2
commit
fd7f3b3405
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue