From: Andrew Eikum Subject: [PATCH 3/5] shell32: Also return RelativePath in GetFolderDefinition Message-Id: <20150302152843.GG2076@foghorn.codeweavers.com> Date: Mon, 2 Mar 2015 09:28:43 -0600 --- dlls/shell32/shellpath.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 8724158..493ab8b 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -3709,6 +3709,8 @@ static HRESULT WINAPI knownfolder_GetFolderDefinition( get_known_folder_dword(knownfolder->registryPath, szAttributes, &pKFD->dwAttributes); + get_known_folder_wstr(knownfolder->registryPath, szRelativePath, &pKFD->pszRelativePath); + return S_OK; } -- 2.3.1