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