From: Enrico Horn Subject: [PATCH] shell32: Implement knownfolder_GetRedirectionCapabilities somewhat Message-Id: <20170123201031.12765-1-farmboy0+winehq@googlemail.com> Date: Mon, 23 Jan 2017 21:10:31 +0100 This is the one thing missing to get the config app for Temple+, a Temple of Elemental Evil Mod, starting. --- dlls/shell32/shellpath.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 92306239db7..3c44ecb393a 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -5396,8 +5396,9 @@ static HRESULT WINAPI knownfolder_GetRedirectionCapabilities( IKnownFolder *iface, KF_REDIRECTION_CAPABILITIES *pCapabilities) { - FIXME("%p\n", pCapabilities); - return E_NOTIMPL; + FIXME("%p - always denied\n", pCapabilities); + *pCapabilities = KF_REDIRECTION_CAPABILITIES_DENY_ALL; + return S_OK; } static HRESULT WINAPI knownfolder_GetFolderDefinition( -- 2.11.0