mshtml.idl: Added HTMLFrameElement 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:33 +02:00 committed by Alexandre Julliard
parent 887641070a
commit 39460707e2
2 changed files with 25 additions and 2 deletions

View File

@ -31,10 +31,10 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLFrameElement {
HTMLFrameBase framebase;
IHTMLFrameElement3 IHTMLFrameElement3_iface;
} HTMLFrameElement;
};
static inline HTMLFrameElement *impl_from_IHTMLFrameElement3(IHTMLFrameElement3 *iface)
{

View File

@ -19427,6 +19427,29 @@ methods:
BSTR ie8_frameBorder();
}
/*****************************************************************************
* HTMLFrameElement coclass
*/
[
noncreatable,
uuid(3050f314-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLFrameElement
{
[default] dispinterface DispHTMLFrameElement;
/* [source, default] dispinterface HTMLControlElementEvents; */
/* [source] dispinterface HTMLControlElementEvents2; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLFrameBase;
interface IHTMLFrameBase2;
/* interface IHTMLFrameBase3; */
/* interface IHTMLFrameElement; */
/* interface IHTMLFrameElement2; */
interface IHTMLFrameElement3;
/* interface IGetSVGDocument; */
}
/*****************************************************************************
* IHTMLIFrameElement interface
*/