Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2002-12-12 12:51:38 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2002-12-12 12:51:38 +0300
commita6af7dbdc3eccbfb9e68da43eb4a8d2cc59b7c4c (patch)
tree54f0b3ff5ca4b343cbf393c4d3b1e1e8c8fcb95b
parent36a8ee5901e7d8c9a7861b45d1e5a2cf005270fc (diff)
* include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
-rw-r--r--winsup/w32api/ChangeLog7
-rw-r--r--winsup/w32api/include/shlobj.h2
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 9a321f25e..8090d955d 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-11 Danny Smith <dannysmith@users.sourveforge.net>
+
+ * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
+ Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
+
2002-12-09 Danny Smith <dannysmith@users.sourveforge.net>
* include/shellapi.h (ExtractIconEx[AW]): Correct return type
@@ -7,7 +12,7 @@
2002-12-07 Danny Smith <dannysmith@users.sourveforge.net>
* include/winuser.h (AllowSetForegroundWindow,
- LockSetForegroundWindow) Add prototypes.
+ LockSetForegroundWindow): Add prototypes.
(ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
Thanks to: Pat Thoyts <patthoyts@users.sourceforge.net>
* lib/winuser.def (AllowSetForegroundWindow,
diff --git a/winsup/w32api/include/shlobj.h b/winsup/w32api/include/shlobj.h
index d3b784797..3ec40aaad 100644
--- a/winsup/w32api/include/shlobj.h
+++ b/winsup/w32api/include/shlobj.h
@@ -528,7 +528,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,WIN32_FIND_DATAW*,DWORD) PURE;
+ STDMETHOD(GetPath)(THIS_ LPWSTR,int,WIN32_FIND_DATAW*,DWORD) PURE;
STDMETHOD(GetIDList)(THIS_ LPITEMIDLIST*) PURE;
STDMETHOD(SetIDList)(THIS_ LPCITEMIDLIST) PURE;
STDMETHOD(GetDescription)(THIS_ LPWSTR,int) PURE;