[Bug 27559] ImgBurn 2.5.5.0 and earlier needs shell32.SHGetKnownFolderIDList() implementation when run with WinVer >= Vista

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Jan 7 09:37:15 CST 2017


https://bugs.winehq.org/show_bug.cgi?id=27559

Louis Lenders <xerox_xerox2000 at yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xerox_xerox2000 at yahoo.co.uk

--- Comment #24 from Louis Lenders <xerox_xerox2000 at 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.



More information about the wine-bugs mailing list