diff options
author | Mumit Khan <khan@@xraylith.wisc.edu> | 2000-04-25 19:13:51 +0000 |
---|---|---|
committer | Mumit Khan <khan@@xraylith.wisc.edu> | 2000-04-25 19:13:51 +0000 |
commit | 84364d972c14e766cc2e8a01086068c67f9619ff (patch) | |
tree | ae0099f43cb333a3c5170a414f34bfdb980bf20e /winsup/w32api/include/shlobj.h | |
parent | d6581f44d4471b942692c1bf91624656991a11bd (diff) | |
download | cygnal-84364d972c14e766cc2e8a01086068c67f9619ff.tar.gz cygnal-84364d972c14e766cc2e8a01086068c67f9619ff.tar.bz2 cygnal-84364d972c14e766cc2e8a01086068c67f9619ff.zip |
2000-04-25 Martin Kotulla <martin-k@softmaker.de>
* include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
* include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
* include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
* include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
Diffstat (limited to 'winsup/w32api/include/shlobj.h')
-rw-r--r-- | winsup/w32api/include/shlobj.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/w32api/include/shlobj.h b/winsup/w32api/include/shlobj.h index fc77bb9ba..8789df7e9 100644 --- a/winsup/w32api/include/shlobj.h +++ b/winsup/w32api/include/shlobj.h @@ -415,7 +415,7 @@ DECLARE_INTERFACE_(IShellLinkA, IUnknown) STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE; - STDMETHOD(GetPath)(THIS_ LPSTR,int,LPWIN32_FIND_DATAA*,DWORD) PURE; + STDMETHOD(GetPath)(THIS_ LPSTR,int,WIN32_FIND_DATAA*,DWORD) PURE; STDMETHOD(GetIDList)(THIS_ LPITEMIDLIST*) PURE; STDMETHOD(SetIDList)(THIS_ LPCITEMIDLIST) PURE; STDMETHOD(GetDescription)(THIS_ LPSTR,int) PURE; @@ -441,7 +441,7 @@ DECLARE_INTERFACE_(IShellLinkW, IUnknown) STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE; - STDMETHOD(GetPath)(THIS_ LPSTR,int,LPWIN32_FIND_DATAW*,DWORD) PURE; + STDMETHOD(GetPath)(THIS_ LPSTR,int,WIN32_FIND_DATAW*,DWORD) PURE; STDMETHOD(GetIDList)(THIS_ LPITEMIDLIST*) PURE; STDMETHOD(SetIDList)(THIS_ LPCITEMIDLIST) PURE; STDMETHOD(GetDescription)(THIS_ LPWSTR,int) PURE; |