Module: wine Branch: master Commit: 8d467a4bd0e391562f62df45d8be20c3d74e4a92 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8d467a4bd0e391562f62df45d8...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Apr 20 16:23:40 2017 +0200
mshtml.idl: Added HTMLIFrame coclass declaration.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mshtml/htmliframe.c | 4 ++-- include/mshtml.idl | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmliframe.c b/dlls/mshtml/htmliframe.c index 14f545d..83ce952 100644 --- a/dlls/mshtml/htmliframe.c +++ b/dlls/mshtml/htmliframe.c @@ -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) { diff --git a/include/mshtml.idl b/include/mshtml.idl index ff67650..1b4ba2a 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -19603,6 +19603,29 @@ methods: }
/***************************************************************************** + * 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 */ [