Jacek Caban : mshtml.idl: Added HTMLFrameElement coclass declaration.
Module: wine Branch: master Commit: 39460707e27e84e976f4f5acfdc5f8db02b2aa89 URL: http://source.winehq.org/git/wine.git/?a=commit;h=39460707e27e84e976f4f5acfd... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Apr 20 16:23:33 2017 +0200 mshtml.idl: Added HTMLFrameElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlframe.c | 4 ++-- include/mshtml.idl | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlframe.c b/dlls/mshtml/htmlframe.c index fd76fa2..1a2772b 100644 --- a/dlls/mshtml/htmlframe.c +++ b/dlls/mshtml/htmlframe.c @@ -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) { diff --git a/include/mshtml.idl b/include/mshtml.idl index 0bdd473..ff67650 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -19428,6 +19428,29 @@ methods: } /***************************************************************************** + * 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 */ [
participants (1)
-
Alexandre Julliard