Skip to content
Snippets Groups Projects
Commit fdeb816f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard
Browse files

mshtml.idl: Added DispHTMLHistory declaration.

parent 4354be12
No related branches found
No related tags found
No related merge requests found
......@@ -10208,6 +10208,33 @@ interface IHTMLLocation : IDispatch
HRESULT toString([retval, out] BSTR *String);
}
 
/*****************************************************************************
* DispHTMLHistory dispinterface
*/
[
hidden,
uuid(3050f549-98b5-11cf-bb82-00aa00bdce0b)
]
dispinterface DispHTMLHistory
{
properties:
methods:
[propget, id(DISPID_IOMHISTORY_LENGTH)]
short length();
[id(DISPID_IOMHISTORY_BACK)]
void back([optional, in] VARIANT *pvargdistance);
[id(DISPID_IOMHISTORY_FORWARD)]
void forward([optional, in] VARIANT *pvargdistance);
[id(DISPID_IOMHISTORY_GO)]
void go([optional, in] VARIANT *pvargdistance);
[propget, id(DISPID_IHTMLDOMCONSTRUCTOR_CONSTRUCTOR), hidden]
IDispatch *constructor();
}
/*****************************************************************************
* DispHTMLLocation dispinterface
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment