Changeset 21860 for branches/gcc-kmk/src/shell32/shellpath.c
- Timestamp:
- Dec 7, 2011, 7:50:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/shell32/shellpath.c
r8614 r21860 511 511 * PathFindOnPathAW [SHELL32] 512 512 */ 513 BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs)514 { 515 if (SHELL_OsIsUnicode()) 516 return PathFindOnPathW(sFile, sOtherDirs);517 return PathFindOnPathA(sFile, sOtherDirs);513 BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs) 514 { 515 if (SHELL_OsIsUnicode()) 516 return PathFindOnPathW(sFile, (LPCWSTR *)sOtherDirs); 517 return PathFindOnPathA(sFile, (LPCSTR *)sOtherDirs); 518 518 } 519 519
Note:
See TracChangeset
for help on using the changeset viewer.