Module: wine Branch: master Commit: 6785ccfce52d04ace8ba038421de164383c0c030 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6785ccfce52d04ace8ba038421... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Apr 20 16:08:39 2017 +0200 mshtml.idl: Added HTMLMetaElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlmeta.c | 4 ++-- include/mshtml.idl | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlmeta.c b/dlls/mshtml/htmlmeta.c index 07490e3..b3312f8 100644 --- a/dlls/mshtml/htmlmeta.c +++ b/dlls/mshtml/htmlmeta.c @@ -31,11 +31,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml); -typedef struct { +struct HTMLMetaElement { HTMLElement element; IHTMLMetaElement IHTMLMetaElement_iface; -} HTMLMetaElement; +}; static inline HTMLMetaElement *impl_from_IHTMLMetaElement(IHTMLMetaElement *iface) { diff --git a/include/mshtml.idl b/include/mshtml.idl index e646d77..ebaac7b 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -11800,6 +11800,24 @@ methods: } /***************************************************************************** + * HTMLMetaElement coclass + */ +[ + noncreatable, + uuid(3050f275-98b5-11cf-bb82-00aa00bdce0b) +] +coclass HTMLMetaElement +{ + [default] dispinterface DispHTMLMetaElement; + [source, default] dispinterface HTMLElementEvents; + [source] dispinterface HTMLElementEvents2; + WINE_HTMLELEMENT_INTERFACES; + interface IHTMLMetaElement; + interface IHTMLMetaElement2; + interface IHTMLMetaElement3; +} + +/***************************************************************************** * DispHTMLUnknownElement dispinterface */ [