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:
Jacek Caban 2017-04-14 14:36:20 +02:00 committed by Alexandre Julliard
parent 41a2d62d5a
commit 735147ad80
2 changed files with 21 additions and 2 deletions

View File

@ -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)
{

View File

@ -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
*/