mshtml.idl: Added HTMLTextAreaElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-04-14 14:36:08 +02:00 committed by Alexandre Julliard
parent 85e9e2867c
commit 41a2d62d5a
2 changed files with 23 additions and 2 deletions

View File

@ -32,13 +32,13 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml); WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct { struct HTMLTextAreaElement {
HTMLElement element; HTMLElement element;
IHTMLTextAreaElement IHTMLTextAreaElement_iface; IHTMLTextAreaElement IHTMLTextAreaElement_iface;
nsIDOMHTMLTextAreaElement *nstextarea; nsIDOMHTMLTextAreaElement *nstextarea;
} HTMLTextAreaElement; };
static inline HTMLTextAreaElement *impl_from_IHTMLTextAreaElement(IHTMLTextAreaElement *iface) static inline HTMLTextAreaElement *impl_from_IHTMLTextAreaElement(IHTMLTextAreaElement *iface)
{ {

View File

@ -11352,6 +11352,27 @@ methods:
IHTMLTxtRange *createTextRange(); IHTMLTxtRange *createTextRange();
} }
/*****************************************************************************
* 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 * IHTMLButtonElement interface
*/ */