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:
parent
c80bd90ab0
commit
6785ccfce5
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue