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:
Jacek Caban 2017-04-14 14:35:40 +02:00 committed by Alexandre Julliard
parent 845b1ff5bf
commit a17e6b33c7
2 changed files with 19 additions and 2 deletions

View File

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

View File

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