Commit 4f228378 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

include: Use wellknown DISPID_* values.

parent 28343db2
......@@ -229,7 +229,7 @@ interface IWebBrowserApp : IWebBrowser
[id(301)] HRESULT ClientToWindow([in,out] int* pcx, [in,out] int* pcy);
[id(302)] HRESULT PutProperty([in] BSTR Property, [in] VARIANT vtValue);
[id(303)] HRESULT GetProperty([in] BSTR Property, [out, retval] VARIANT *pvtValue);
[id(0), propget] HRESULT Name([out, retval] BSTR* Name);
[id(DISPID_VALUE), propget] HRESULT Name([out, retval] BSTR* Name);
[id(DISPID_HWND), propget] HRESULT HWND([out, retval] SHANDLE_PTR *pHWND);
[id(400), propget] HRESULT FullName([out, retval] BSTR* FullName);
[id(401), propget] HRESULT Path([out, retval] BSTR* Path);
......@@ -581,11 +581,13 @@ interface IShellWindows : IDispatch
{
[propget] HRESULT Count([out, retval] long *Count);
[id(0)] HRESULT Item(
[id(DISPID_VALUE)]
HRESULT Item(
[in, optional] VARIANT index,
[out, retval] IDispatch **Folder);
[id(-4)] HRESULT _NewEnum([out, retval] IUnknown **ppunk);
[id(DISPID_NEWENUM)]
HRESULT _NewEnum([out, retval] IUnknown **ppunk);
[hidden] HRESULT Register(
[in] IDispatch *pid,
......@@ -916,7 +918,8 @@ interface ISearches : IDispatch {
[in, optional] VARIANT index,
[out, retval] ISearch **ppid);
[id(-4)] HRESULT _NewEnum([out, retval] IUnknown **ppunk);
[id(DISPID_NEWENUM)]
HRESULT _NewEnum([out, retval] IUnknown **ppunk);
}
[
......
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