https://bugs.winehq.org/show_bug.cgi?id=27559 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000(a)yahoo.co.uk --- Comment #24 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> --- A user reported same problems with this app in wine-forum, so still present. The hack below makes it start for me in Windows 7, so there`s still some work to do on this function SHGetKnownFolderIDList diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c index 9230623..b9dceca 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -5867,8 +5867,8 @@ HRESULT WINAPI SHGetKnownFolderIDList(REFKNOWNFOLDERID rfid, DWORD flags, HANDLE if (!pidl) return E_INVALIDARG; - if (flags) - FIXME("unsupported flags: 0x%08x\n", flags); + if (flags){ + FIXME("unsupported flags: 0x%08x\n", flags);return E_FAIL;} if (token) FIXME("user token is not used.\n"); -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.