mshtml.idl: Added IHTMLHtmlElement declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e35a84360c
commit
a02edb12c3
|
@ -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
|
||||
|
||||
|
|
|
@ -10723,6 +10723,24 @@ methods:
|
|||
IHTMLTxtRange *createTextRange();
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* 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
|
||||
*/
|
||||
|
@ -10855,6 +10873,26 @@ interface IHTMLMetaElement3 : IDispatch
|
|||
HRESULT url([out, retval] BSTR *p);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* 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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue