mshtml.idl: Added HTMLLabelElement coclass declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
845b1ff5bf
commit
a17e6b33c7
|
@ -1371,11 +1371,11 @@ HRESULT HTMLInputElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct {
|
struct HTMLLabelElement {
|
||||||
HTMLElement element;
|
HTMLElement element;
|
||||||
|
|
||||||
IHTMLLabelElement IHTMLLabelElement_iface;
|
IHTMLLabelElement IHTMLLabelElement_iface;
|
||||||
} HTMLLabelElement;
|
};
|
||||||
|
|
||||||
static inline HTMLLabelElement *impl_from_IHTMLLabelElement(IHTMLLabelElement *iface)
|
static inline HTMLLabelElement *impl_from_IHTMLLabelElement(IHTMLLabelElement *iface)
|
||||||
{
|
{
|
||||||
|
|
|
@ -10100,6 +10100,23 @@ methods:
|
||||||
IHTMLFormElement *form();
|
IHTMLFormElement *form();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* HTMLLabelElement coclass
|
||||||
|
*/
|
||||||
|
[
|
||||||
|
noncreatable,
|
||||||
|
uuid(3050f32b-98b5-11cf-bb82-00aa00bdce0b)
|
||||||
|
]
|
||||||
|
coclass HTMLLabelElement
|
||||||
|
{
|
||||||
|
[default] dispinterface DispHTMLLabelElement;
|
||||||
|
/* [source, default] dispinterface HTMLLabelEvents; */
|
||||||
|
/* [source] dispinterface HTMLLabelEvents2; */
|
||||||
|
WINE_HTMLDATAELEMENT_INTERFACES;
|
||||||
|
interface IHTMLLabelElement;
|
||||||
|
interface IHTMLLabelElement2;
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* IHTMLElementCollection interface
|
* IHTMLElementCollection interface
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue