[PATCH] shell32: Recognize IQueryInfo in IShellFolder2_GetUIObjectOf

Detlef Riekenberg wine.dev at web.de
Sat Feb 5 17:15:10 CST 2011


Used by total commander

--
By by ... Detlef
---
 dlls/shell32/shfldr_unixfs.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/dlls/shell32/shfldr_unixfs.c b/dlls/shell32/shfldr_unixfs.c
index 8f52a80..fae1542 100644
--- a/dlls/shell32/shfldr_unixfs.c
+++ b/dlls/shell32/shfldr_unixfs.c
@@ -1192,6 +1192,9 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_GetUIObjectOf(IShellFolder2* ifac
     } else if (IsEqualIID(&IID_IShellLinkA, riid)) {
         FIXME("IShellLinkA\n");
         return E_FAIL;
+    } else if (IsEqualIID(&IID_IQueryInfo, riid)) {
+        FIXME("IQueryInfo(%p, %p, %d, %p, ...)\n", iface, hwndOwner, cidl, *apidl);
+        return E_FAIL;
     } else {
         FIXME("Unknown interface %s in GetUIObjectOf\n", debugstr_guid(riid));
         return E_NOINTERFACE;
-- 
1.7.1




More information about the wine-patches mailing list