From fdd9a4e2a73409d98c5b337f534ca64d87586293 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Tue, 14 Nov 2006 22:13:17 +0000 Subject: [PATCH] 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 2a2cc38473e..bc6412963ea 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 3121a1bd06e..5bba7da83d8 100644 --- a/dlls/shell32/undocshell.h +++ b/dlls/shell32/undocshell.h @@ -455,7 +455,7 @@ int WINAPI PathParseIconLocationAW(LPVOID lpszPath); BOOL WINAPI PathIsSameRootAW(LPCVOID lpszPath1, LPCVOID lpszPath2); -BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs); +BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs); /**************************************************************************** * Shell Namespace Routines -- 2.11.4.GIT