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:
parent
d653086102
commit
327a77c1c2
|
@ -32,11 +32,11 @@
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
||||||
|
|
||||||
typedef struct {
|
struct HTMLGenericElement {
|
||||||
HTMLElement element;
|
HTMLElement element;
|
||||||
|
|
||||||
IHTMLGenericElement IHTMLGenericElement_iface;
|
IHTMLGenericElement IHTMLGenericElement_iface;
|
||||||
} HTMLGenericElement;
|
};
|
||||||
|
|
||||||
static inline HTMLGenericElement *impl_from_IHTMLGenericElement(IHTMLGenericElement *iface)
|
static inline HTMLGenericElement *impl_from_IHTMLGenericElement(IHTMLGenericElement *iface)
|
||||||
{
|
{
|
||||||
|
|
|
@ -7007,6 +7007,22 @@ methods:
|
||||||
[in, optional] VARIANT *hierarchy);
|
[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
|
* IHTMLStyleSheetRule interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue