Jacek Caban : mshtml.idl: Added HTMLObjectElement coclass declaration.
Module: wine Branch: master Commit: 887641070a157dac4272f25034c81945d2bf4409 URL: http://source.winehq.org/git/wine.git/?a=commit;h=887641070a157dac4272f25034... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Apr 20 16:23:27 2017 +0200 mshtml.idl: Added HTMLObjectElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlobject.c | 4 ++-- include/mshtml.idl | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlobject.c b/dlls/mshtml/htmlobject.c index 89913cb..47c1e8b 100644 --- a/dlls/mshtml/htmlobject.c +++ b/dlls/mshtml/htmlobject.c @@ -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) { diff --git a/include/mshtml.idl b/include/mshtml.idl index f734356..0bdd473 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -19089,6 +19089,28 @@ methods: } /***************************************************************************** + * 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 */ [
participants (1)
-
Alexandre Julliard