mshtml.idl: Added HTMLIFrame 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:23:40 +02:00 committed by Alexandre Julliard
parent 39460707e2
commit 8d467a4bd0
2 changed files with 25 additions and 2 deletions

View File

@ -31,12 +31,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLIFrame {
HTMLFrameBase framebase;
IHTMLIFrameElement IHTMLIFrameElement_iface;
IHTMLIFrameElement2 IHTMLIFrameElement2_iface;
IHTMLIFrameElement3 IHTMLIFrameElement3_iface;
} HTMLIFrame;
};
static inline HTMLIFrame *impl_from_IHTMLIFrameElement(IHTMLIFrameElement *iface)
{

View File

@ -19602,6 +19602,29 @@ methods:
BSTR ie8_frameBorder();
}
/*****************************************************************************
* HTMLIFrame coclass
*/
[
noncreatable,
uuid(3050f316-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLIFrame
{
[default] dispinterface DispHTMLIFrame;
/* [source, default] dispinterface HTMLControlElementEvents; */
/* [source] dispinterface HTMLControlElementEvents2; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLFrameBase;
interface IHTMLFrameBase2;
/* interface IHTMLFrameBase3; */
interface IHTMLIFrameElement;
interface IHTMLIFrameElement2;
interface IHTMLIFrameElement3;
/* interface IGetSVGDocument; */
}
/*****************************************************************************
* IHTMLStyleElement interface
*/