mshtml.idl: Added HTMLObjectElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Jacek Caban 2017-04-20 16:23:27 +02:00 committed by Alexandre Julliard
parent eb9b998c15
commit 887641070a
2 changed files with 24 additions and 2 deletions

View File

@ -34,14 +34,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLObjectElement {
HTMLPluginContainer plugin_container;
IHTMLObjectElement IHTMLObjectElement_iface;
IHTMLObjectElement2 IHTMLObjectElement2_iface;
nsIDOMHTMLObjectElement *nsobject;
} HTMLObjectElement;
};
static inline HTMLObjectElement *impl_from_IHTMLObjectElement(IHTMLObjectElement *iface)
{

View File

@ -19088,6 +19088,28 @@ methods:
BSTR ie8_data();
}
/*****************************************************************************
* HTMLObjectElement coclass
*/
[
noncreatable,
uuid(3050f24e-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLObjectElement
{
[default] dispinterface DispHTMLObjectElement;
/* [source, default] dispinterface HTMLObjectElementEvents; */
/* [source] dispinterface HTMLObjectElementEvents2; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLObjectElement;
interface IHTMLObjectElement2;
/* interface IHTMLObjectElement3; */
/* interface IHTMLObjectElement4; */
/* interface IGetSVGDocument; */
/* interface IHTMLObjectElement5; */
}
/*****************************************************************************
* DispHTMLParamElement dispinterface
*/