mshtml.idl: Added HTMLGenericElement 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-13 16:05:01 +02:00 committed by Alexandre Julliard
parent d653086102
commit 327a77c1c2
2 changed files with 18 additions and 2 deletions

View File

@ -32,11 +32,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLGenericElement {
HTMLElement element;
IHTMLGenericElement IHTMLGenericElement_iface;
} HTMLGenericElement;
};
static inline HTMLGenericElement *impl_from_IHTMLGenericElement(IHTMLGenericElement *iface)
{

View File

@ -7007,6 +7007,22 @@ methods:
[in, optional] VARIANT *hierarchy);
}
/*****************************************************************************
* HTMLGenericElement coclass
*/
[
noncreatable,
uuid(3050f4b8-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLGenericElement
{
[default] dispinterface DispHTMLGenericElement;
[source, default] dispinterface HTMLElementEvents;
[source] dispinterface HTMLElementEvents2;
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLGenericElement;
}
/*****************************************************************************
* IHTMLStyleSheetRule interface
*/