Commit a17e6b33 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added HTMLLabelElement coclass declaration.

parent 845b1ff5
......@@ -1371,11 +1371,11 @@ HRESULT HTMLInputElement_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem
return S_OK;
}
typedef struct {
struct HTMLLabelElement {
HTMLElement element;
IHTMLLabelElement IHTMLLabelElement_iface;
} HTMLLabelElement;
};
static inline HTMLLabelElement *impl_from_IHTMLLabelElement(IHTMLLabelElement *iface)
{
......
......@@ -10101,6 +10101,23 @@ methods:
}
/*****************************************************************************
* 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
*/
[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment