Module: wine Branch: master Commit: 103f158c63947dcd4a158157b46d19be8f57ec63 URL: http://source.winehq.org/git/wine.git/?a=commit;h=103f158c63947dcd4a158157b4... Author: Andrew Eikum <aeikum(a)codeweavers.com> Date: Mon Mar 2 09:28:43 2015 -0600 shell32: Also return RelativePath in GetFolderDefinition. --- 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; }