[PATCH 0/1] MR7923: shell32: Change type of KNOWNFOLDERID FOLDERID_UserProgramFiles from...
shell32: Change type of KNOWNFOLDERID FOLDERID_UserProgramFiles from CSIDL_Type_Disallowed to CSIDL_Type_User. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58169 -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7923
From: Louis Lenders <xerox.xerox2000x(a)gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58169 --- dlls/shell32/shellpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 1a52717651e..dad5949fdce 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -2039,7 +2039,7 @@ static const CSIDL_DATA CSIDL_Data[] = }, { /* 0x6e */ .id = &FOLDERID_UserProgramFiles, - .type = CSIDL_Type_Disallowed, /* FIXME */ + .type = CSIDL_Type_User, .category = KF_CATEGORY_PERUSER, .name = L"UserProgramFiles", .parent = &FOLDERID_LocalAppData, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7923
participants (2)
-
Louis Lenders -
Louis Lenders (@xe)