[shell32]

sync _SHGetUserProfilePath with wine

svn path=/trunk/; revision=63427
This commit is contained in:
Christoph von Wittich 2014-05-24 06:44:22 +00:00
parent dd379d872b
commit a850037725

View file

@ -1171,6 +1171,11 @@ static HRESULT _SHGetUserProfilePath(HANDLE hToken, DWORD dwFlags, BYTE folder,
if (dwFlags & SHGFP_TYPE_DEFAULT)
{
if (hToken != NULL && hToken != (HANDLE)-1)
{
FIXME("unsupported for user other than current or default\n");
return E_FAIL;
}
hr = _SHGetDefaultValue(folder, pszPath);
}
else