mshtml.idl: Added HTMLMetaElement 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-20 16:08:39 +02:00 committed by Alexandre Julliard
parent c80bd90ab0
commit 6785ccfce5
2 changed files with 20 additions and 2 deletions

View File

@ -31,11 +31,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLMetaElement {
HTMLElement element;
IHTMLMetaElement IHTMLMetaElement_iface;
} HTMLMetaElement;
};
static inline HTMLMetaElement *impl_from_IHTMLMetaElement(IHTMLMetaElement *iface)
{

View File

@ -11799,6 +11799,24 @@ methods:
BSTR ie8_url();
}
/*****************************************************************************
* HTMLMetaElement coclass
*/
[
noncreatable,
uuid(3050f275-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLMetaElement
{
[default] dispinterface DispHTMLMetaElement;
[source, default] dispinterface HTMLElementEvents;
[source] dispinterface HTMLElementEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLMetaElement;
interface IHTMLMetaElement2;
interface IHTMLMetaElement3;
}
/*****************************************************************************
* DispHTMLUnknownElement dispinterface
*/