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>2003-02-05 01:17:38 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2003-02-05 01:17:38 +0300
commitccbb9a6490ff085c5d95961886a9ac0d3e56a3c8 (patch)
treed914d0081634110f5b357bdeb0f359aa5b0fa620
parent5ae9331a3202ba2c9f1087b4d5d40b35b89753ee (diff)
* include/shlwapi.h (PathRelativePathTo[AW]): Correct
protototypes. Thanks to: John Dallaway <jld@ecoscentric.com>.
-rw-r--r--winsup/w32api/ChangeLog6
-rw-r--r--winsup/w32api/include/shlwapi.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 2e773f15d..082d7ca0f 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,9 @@
+2003-02-04 Danny Smith <dannysmith@users.sourceforge.net>
+
+ * include/shlwapi.h (PathRelativePathTo[AW]): Correct
+ protototypes.
+ Thanks to: John Dallaway <jld@ecoscentric.com>.
+
2003-02-01 Danny Smith <dannysmith@users.sourceforge.net>
* include/commctrl.h (TCM_*): Add missing defines.
diff --git a/winsup/w32api/include/shlwapi.h b/winsup/w32api/include/shlwapi.h
index ef6063a13..03a83ada0 100644
--- a/winsup/w32api/include/shlwapi.h
+++ b/winsup/w32api/include/shlwapi.h
@@ -264,8 +264,8 @@ WINSHLWAPI int WINAPI PathParseIconLocationA(LPSTR);
WINSHLWAPI int WINAPI PathParseIconLocationW(LPWSTR);
WINSHLWAPI void WINAPI PathQuoteSpacesA(LPSTR);
WINSHLWAPI void WINAPI PathQuoteSpacesW(LPWSTR);
-WINSHLWAPI BOOL WINAPI PathRelativePathToA(LPSTR,LPCSTR,DWORD,LPCWSTR,DWORD);
-WINSHLWAPI BOOL WINAPI PathRelativePathToW(LPWSTR,LPCWSTR,DWORD,LPCSTR,DWORD);
+WINSHLWAPI BOOL WINAPI PathRelativePathToA(LPSTR,LPCSTR,DWORD,LPCSTR,DWORD);
+WINSHLWAPI BOOL WINAPI PathRelativePathToW(LPWSTR,LPCWSTR,DWORD,LPCWSTR,DWORD);
WINSHLWAPI void WINAPI PathRemoveArgsA(LPSTR);
WINSHLWAPI void WINAPI PathRemoveArgsW(LPWSTR);
WINSHLWAPI LPSTR WINAPI PathRemoveBackslashA(LPSTR);