mshtml.idl: Added HTMLButtonElement coclass declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
41a2d62d5a
commit
735147ad80
|
@ -1559,13 +1559,13 @@ HRESULT HTMLLabelElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
struct HTMLButtonElement {
|
||||
HTMLElement element;
|
||||
|
||||
IHTMLButtonElement IHTMLButtonElement_iface;
|
||||
|
||||
nsIDOMHTMLButtonElement *nsbutton;
|
||||
} HTMLButtonElement;
|
||||
};
|
||||
|
||||
static inline HTMLButtonElement *impl_from_IHTMLButtonElement(IHTMLButtonElement *iface)
|
||||
{
|
||||
|
|
|
@ -11459,6 +11459,25 @@ methods:
|
|||
IHTMLTxtRange *createTextRange();
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* HTMLButtonElement coclass
|
||||
*/
|
||||
[
|
||||
noncreatable,
|
||||
uuid(3050f2c6-98b5-11cf-bb82-00aa00bdce0b)
|
||||
]
|
||||
coclass HTMLButtonElement
|
||||
{
|
||||
[default] dispinterface DispHTMLButtonElement;
|
||||
/* [source, default] dispinterface HTMLButtonElementEvents; */
|
||||
/* [source] dispinterface HTMLButtonElementEvents2; */
|
||||
WINE_HTMLDATAELEMENT_INTERFACES;
|
||||
interface IHTMLControlElement;
|
||||
interface IHTMLTextContainer;
|
||||
interface IHTMLButtonElement;
|
||||
/* interface IHTMLButtonElement2; */
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* IHTMLHtmlElement interface
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue