Jacek Caban : mshtml.idl: Added HTMLTextAreaElement coclass declaration.
Module: wine Branch: master Commit: 41a2d62d5a40077fff8b6b468050f649b9cfa9c3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=41a2d62d5a40077fff8b6b4680... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Fri Apr 14 14:36:08 2017 +0200 mshtml.idl: Added HTMLTextAreaElement coclass declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mshtml/htmltextarea.c | 4 ++-- include/mshtml.idl | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmltextarea.c b/dlls/mshtml/htmltextarea.c index e464819..d26de22 100644 --- a/dlls/mshtml/htmltextarea.c +++ b/dlls/mshtml/htmltextarea.c @@ -32,13 +32,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml); -typedef struct { +struct HTMLTextAreaElement { HTMLElement element; IHTMLTextAreaElement IHTMLTextAreaElement_iface; nsIDOMHTMLTextAreaElement *nstextarea; -} HTMLTextAreaElement; +}; static inline HTMLTextAreaElement *impl_from_IHTMLTextAreaElement(IHTMLTextAreaElement *iface) { diff --git a/include/mshtml.idl b/include/mshtml.idl index 91d38cb..b6922c7 100644 --- a/include/mshtml.idl +++ b/include/mshtml.idl @@ -11353,6 +11353,27 @@ methods: } /***************************************************************************** + * HTMLTextAreaElement coclass + */ +[ + noncreatable, + uuid(3050f2ac-98b5-11cf-bb82-00aa00bdce0b) +] +coclass HTMLTextAreaElement +{ + [default] dispinterface DispHTMLTextAreaElement; + /* [source, default] dispinterface HTMLInputTextElementEvents; */ + /* [source] dispinterface HTMLInputTextElementEvents2; */ + [source] dispinterface HTMLTextContainerEvents; + [source] dispinterface HTMLTextContainerEvents2; + WINE_HTMLDATAELEMENT_INTERFACES; + interface IHTMLControlElement; + interface IHTMLTextContainer; + interface IHTMLTextAreaElement; + /* interface IHTMLTextAreaElement2; */ +} + +/***************************************************************************** * IHTMLButtonElement interface */ [
participants (1)
-
Alexandre Julliard