Jacek Caban : mshtml.idl: Added HTMLTitleElement coclass declaration.
Module: wine Branch: master Commit: c80bd90ab0f40e7117907d691f7cd2b8878f6e03 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c80bd90ab0f40e7117907d691f... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Thu Apr 20 16:08:28 2017 +0200 mshtml.idl: Added HTMLTitleElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlhead.c | 4 ++-- include/mshtml.idl | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlhead.c b/dlls/mshtml/htmlhead.c index e391396..f9f3dbe 100644 --- a/dlls/mshtml/htmlhead.c +++ b/dlls/mshtml/htmlhead.c @@ -32,11 +32,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml); -typedef struct { +struct HTMLTitleElement { HTMLElement element; IHTMLTitleElement IHTMLTitleElement_iface; -} HTMLTitleElement; +}; static inline HTMLTitleElement *impl_from_IHTMLTitleElement(IHTMLTitleElement *iface) { diff --git a/include/mshtml.idl b/include/mshtml.idl index e3bf2e7..e646d77 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -11728,6 +11728,22 @@ methods: } /***************************************************************************** + * HTMLTitleElement coclass + */ +[ + noncreatable, + uuid(3050f284-98b5-11cf-bb82-00aa00bdce0b) +] +coclass HTMLTitleElement +{ + [default] dispinterface DispHTMLTitleElement; + [source, default] dispinterface HTMLElementEvents; + [source] dispinterface HTMLElementEvents2; + WINE_HTMLELEMENT_INTERFACES; + interface IHTMLTitleElement; +} + +/***************************************************************************** * DispHTMLMetaElement dispinterface */ [
participants (1)
-
Alexandre Julliard