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:
parent
85e9e2867c
commit
41a2d62d5a
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -11352,6 +11352,27 @@ methods:
|
|||
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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue