mshtml.idl: Added HTMLInputElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Jacek Caban 2017-04-14 14:36:00 +02:00 committed by Alexandre Julliard
parent 9689cbcb18
commit 85e9e2867c
2 changed files with 31 additions and 2 deletions

View File

@ -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};

View File

@ -11147,6 +11147,35 @@ methods:
BSTR useMap();
}
/*****************************************************************************
* 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
*/