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

mshtml.idl: Added IHTMLHtmlElement declaration.

parent e35a8436
......@@ -2684,6 +2684,9 @@
/* IHTMLSelectElement4 */
#define DISPID_IHTMLSELECTELEMENT4_NAMEDITEM DISPID_COLLECTION+6
/* IHTMLHtmlElement */
#define DISPID_IHTMLHTMLELEMENT_VERSION DISPID_HEDELEMS+1
/* IHTMLHeadElement */
#define DISPID_IHTMLHEADELEMENT_PROFILE DISPID_HEDELEMS+1
......
......@@ -10724,6 +10724,24 @@ methods:
}
/*****************************************************************************
* IHTMLHtmlElement interface
*/
[
odl,
oleautomation,
dual,
uuid(3050f81c-98b5-11cf-bb82-00aa00bdce0b)
]
interface IHTMLHtmlElement : IDispatch
{
[propput, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
HRESULT version([in] BSTR v);
[propget, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
HRESULT version([out, retval] BSTR *p);
}
/*****************************************************************************
* IHTMLHeadElement interface
*/
[
......@@ -10856,6 +10874,26 @@ interface IHTMLMetaElement3 : IDispatch
}
/*****************************************************************************
* DispHTMLHtmlElement interface
*/
[
hidden,
uuid(3050f560-98b5-11cf-bb82-00aa00bdce0b)
]
dispinterface DispHTMLHtmlElement
{
properties:
methods:
WINE_HTMLELEMENT_DISPINTERFACE_DECL;
[propput, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
void version(BSTR v);
[propget, id(DISPID_IHTMLHTMLELEMENT_VERSION), displaybind, bindable]
BSTR version();
}
/*****************************************************************************
* DispHTMLHeadElement 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