Commit 0f988544 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml.idl: Added IHTMLLabelElement* interfaces declarations.

parent 4ef6a968
......@@ -2377,6 +2377,13 @@
#define DISPID_IHTMLANCHORELEMENT3_IE8_COORDS DISPID_IE8_ANCHOR+2
#define DISPID_IHTMLANCHORELEMENT3_IE8_HREF DISPID_IE8_ANCHOR+3
/* IHTMLLabelElement */
#define DISPID_IHTMLLABELELEMENT_HTMLFOR DISPID_LABEL
#define DISPID_IHTMLLABELELEMENT_ACCESSKEY DISPID_SITE+5
/* IHTMLLabelElement2 */
#define DISPID_IHTMLLABELELEMENT2_FORM DISPID_LABEL+2
/* IHTMLTxtRange */
#define DISPID_IHTMLTXTRANGE_HTMLTEXT DISPID_RANGE+3
#define DISPID_IHTMLTXTRANGE_TEXT DISPID_RANGE+4
......
......@@ -8968,6 +8968,68 @@ methods:
}
/*****************************************************************************
* IHTMLLabelElement interface
*/
[
odl,
oleautomation,
dual,
uuid(3050f32a-98b5-11cf-bb82-00aa00bdce0b)
]
interface IHTMLLabelElement : IDispatch
{
[propput, id(DISPID_IHTMLLABELELEMENT_HTMLFOR), displaybind, bindable]
HRESULT htmlFor([in] BSTR v);
[propget, id(DISPID_IHTMLLABELELEMENT_HTMLFOR), displaybind, bindable]
HRESULT htmlFor([out, retval] BSTR *p);
[propput, id(DISPID_IHTMLLABELELEMENT_ACCESSKEY), displaybind, bindable]
HRESULT accessKey([in] BSTR v);
[propget, id(DISPID_IHTMLLABELELEMENT_ACCESSKEY), displaybind, bindable]
HRESULT accessKey([out, retval] BSTR *p);
}
/*****************************************************************************
* IHTMLLabelElement2 interface
*/
[
odl,
oleautomation,
dual,
uuid(3050f832-98b5-11cf-bb82-00aa00bdce0b)
]
interface IHTMLLabelElement2 : IDispatch
{
[propget, id(DISPID_IHTMLLABELELEMENT2_FORM)]
HRESULT form([out, retval] IHTMLFormElement **p);
}
/*****************************************************************************
* DispHTMLLabelElement dispinterface
*/
[
hidden,
uuid(3050f522-98b5-11cf-bb82-00aa00bdce0b)
]
dispinterface DispHTMLLabelElement
{
properties:
methods:
WINE_HTMLDATAELEMENT_DISPINTERFACE_DECL;
[propput, id(DISPID_IHTMLLABELELEMENT_HTMLFOR), displaybind, bindable]
void htmlFor(BSTR v);
[propget, id(DISPID_IHTMLLABELELEMENT_HTMLFOR), displaybind, bindable]
BSTR htmlFor();
[propget, id(DISPID_IHTMLLABELELEMENT2_FORM)]
IHTMLFormElement *form();
}
/*****************************************************************************
* 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