Commit 85e9e286 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLInputElement coclass declaration.

parent 9689cbcb
......@@ -34,14 +34,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLInputElement {
HTMLElement element;
IHTMLInputElement IHTMLInputElement_iface;
IHTMLInputTextElement IHTMLInputTextElement_iface;
nsIDOMHTMLInputElement *nsinput;
} HTMLInputElement;
};
static const WCHAR forW[] = {'f','o','r',0};
......
......@@ -11148,6 +11148,35 @@ methods:
}
/*****************************************************************************
* HTMLInputElement coclass
*/
[
noncreatable,
uuid(3050f5d8-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLInputElement
{
[default] dispinterface DispHTMLInputElement;
/* [source, default] dispinterface HTMLInputTextElementEvents; */
/* [source] dispinterface HTMLInputTextElementEvents2; */
/* [source] dispinterface HTMLOptionButtonElementEvents; */
/* [source] dispinterface HTMLButtonElementEvents; */
WINE_HTMLDATAELEMENT_INTERFACES;
interface IHTMLControlElement;
interface IHTMLInputElement;
/* interface IHTMLInputElement2; */
interface IHTMLInputTextElement;
/* interface IHTMLInputTextElement2; */
/* interface IHTMLInputHiddenElement; */
/* interface IHTMLInputButtonElement; */
/* interface IHTMLInputFileElement; */
/* interface IHTMLOptionButtonElement; */
/* interface IHTMLInputImage; */
/* interface IHTMLInputElement3; */
/* interface IHTMLInputRangeElement; */
}
/*****************************************************************************
* IHTMLTextAreaElement 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