shell32: Cast-qual warnings fix.
This commit is contained in:
parent
2f4bb7b78d
commit
fdd9a4e2a7
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue