1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

mshtml.idl: Added DispHTMLHistory declaration.

This commit is contained in:
Jacek Caban 2012-05-02 10:27:56 +02:00 committed by Alexandre Julliard
parent 4354be123c
commit fdeb816fc9

View File

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