mshtml.idl: Added HTMLInputElement coclass declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9689cbcb18
commit
85e9e2867c
|
@ -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};
|
||||
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue