Commit 41a2d62d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLTextAreaElement coclass declaration.

parent 85e9e286
......@@ -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)
{
......
......@@ -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
*/
[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment