Module: wine Branch: master Commit: 331205d88c1bfa0f808ec214ea5dca624a717286 URL: http://source.winehq.org/git/wine.git/?a=commit;h=331205d88c1bfa0f808ec214ea... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Fri Apr 21 13:50:15 2017 +0200 mshtml.idl: Added HTMLAreaElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmlarea.c | 4 ++-- include/mshtml.idl | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlarea.c b/dlls/mshtml/htmlarea.c index 3236b8c..1e51852 100644 --- a/dlls/mshtml/htmlarea.c +++ b/dlls/mshtml/htmlarea.c @@ -33,13 +33,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml); -typedef struct { +struct HTMLAreaElement { HTMLElement element; IHTMLAreaElement IHTMLAreaElement_iface; nsIDOMHTMLAreaElement *nsarea; -} HTMLAreaElement; +}; static inline HTMLAreaElement *impl_from_IHTMLAreaElement(IHTMLAreaElement *iface) { diff --git a/include/mshtml.idl b/include/mshtml.idl index a9d6502..4a8913f 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -10039,6 +10039,23 @@ methods: } /***************************************************************************** + * HTMLAreaElement coclass + */ +[ + noncreatable, + uuid(3050f283-98b5-11cf-bb82-00aa00bdce0b) +] +coclass HTMLAreaElement +{ + [default] dispinterface DispHTMLAreaElement; + /* [source, default] dispinterface HTMLAreaEvents; */ + /* [source] dispinterface HTMLAreaEvents2; */ + WINE_HTMLELEMENT_INTERFACES; + interface IHTMLAreaElement; + /* interface IHTMLAreaElement2; */ +} + +/***************************************************************************** * IHTMLLabelElement interface */ [