Ignore:
Timestamp:
Dec 7, 2011, 7:50:11 PM (14 years ago)
Author:
dmik
Message:

Port SHELL32 to GCC/kBuild.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/shell32/shellpath.c

    r8614 r21860  
    511511 * PathFindOnPathAW     [SHELL32]
    512512 */
    513 BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs)
    514 {
    515         if (SHELL_OsIsUnicode())
    516           return PathFindOnPathW(sFile, sOtherDirs);
    517         return PathFindOnPathA(sFile, sOtherDirs);
     513BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs)
     514{
     515        if (SHELL_OsIsUnicode())
     516          return PathFindOnPathW(sFile, (LPCWSTR *)sOtherDirs);
     517        return PathFindOnPathA(sFile, (LPCSTR *)sOtherDirs);
    518518}
    519519
Note: See TracChangeset for help on using the changeset viewer.