Commit 4205880f authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard

Implement FixSlashesAndColonW and add stub for SHGetAppCompatFlags.

parent fac49cba
......@@ -3837,6 +3837,31 @@ DWORD WINAPI SHMenuIndexFromID(HMENU hMenu, UINT uID)
return GetMenuPosFromID(hMenu, uID);
}
/*************************************************************************
* @ [SHLWAPI.448]
*/
VOID WINAPI FixSlashesAndColonW(LPWSTR lpwstr)
{
while (*lpwstr)
{
if (*lpwstr == '/')
*lpwstr = '\\';
lpwstr++;
}
}
/*************************************************************************
* @ [SHLWAPI.461]
*/
DWORD WINAPI SHGetAppCompatFlags()
{
FIXME("stub\n");
return 0;
}
/*************************************************************************
* @ [SHLWAPI.549]
*/
......
......@@ -445,7 +445,7 @@
445 stdcall -noname PathFileExistsAndAttributesA(str ptr)
446 stdcall -noname PathFileExistsAndAttributesW(wstr ptr)
447 stub -noname FixSlashesAndColonA
448 stub -noname FixSlashesAndColonW
448 stdcall -noname FixSlashesAndColonW(wstr)
449 stub -noname NextPathA
450 stub -noname NextPathW
451 stub -noname CharUpperNoDBCSA
......@@ -458,7 +458,7 @@
458 stub -noname GetLongPathNameWrapA
459 stub -noname SHExpandEnvironmentStringsA
460 stub -noname SHExpandEnvironmentStringsW
461 stub -noname SHGetAppCompatFlags
461 stdcall -noname SHGetAppCompatFlags()
462 stub -noname UrlFixupW
463 stub -noname SHExpandEnvironmentStringsForUserA
464 stub -noname SHExpandEnvironmentStringsForUserW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment