Module: wine Branch: master Commit: fdd9a4e2a73409d98c5b337f534ca64d87586293 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fdd9a4e2a73409d98c5b337f53...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Tue Nov 14 22:13:17 2006 +0000
shell32: Cast-qual warnings fix.
---
dlls/shell32/shellpath.c | 2 +- dlls/shell32/undocshell.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 2a2cc38..bc64129 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -550,7 +550,7 @@ BOOL WINAPI PathYetAnotherMakeUniqueName /************************************************************************* * PathFindOnPath [SHELL32.145] */ -BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs) +BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs) { if (SHELL_OsIsUnicode()) return PathFindOnPathW(sFile, (LPCWSTR *)sOtherDirs); diff --git a/dlls/shell32/undocshell.h b/dlls/shell32/undocshell.h index 3121a1b..5bba7da 100644 --- a/dlls/shell32/undocshell.h +++ b/dlls/shell32/undocshell.h @@ -455,7 +455,7 @@ int WINAPI PathParseIconLocationAW(LPVOI
BOOL WINAPI PathIsSameRootAW(LPCVOID lpszPath1, LPCVOID lpszPath2);
-BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs); +BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs);
/**************************************************************************** * Shell Namespace Routines