Commit c6b6082d authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

shell32: Improve a TRACE and issue a FIXME if the interface is not implemented.

parent a456e641
...@@ -163,6 +163,7 @@ ...@@ -163,6 +163,7 @@
#include "shfldr.h" #include "shfldr.h"
#include "shresdef.h" #include "shresdef.h"
#include "pidl.h" #include "pidl.h"
#include "debughlp.h"
WINE_DEFAULT_DEBUG_CHANNEL(shell); WINE_DEFAULT_DEBUG_CHANNEL(shell);
...@@ -795,7 +796,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa ...@@ -795,7 +796,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa
{ {
UnixFolder *This = ADJUST_THIS(UnixFolder, IShellFolder2, iface); UnixFolder *This = ADJUST_THIS(UnixFolder, IShellFolder2, iface);
TRACE("(iface=%p, riid=%p, ppv=%p)\n", iface, riid, ppv); TRACE("(iface=%p, riid=%s, ppv=%p)\n", iface, shdebugstr_guid(riid), ppv);
if (!ppv) return E_INVALIDARG; if (!ppv) return E_INVALIDARG;
...@@ -817,6 +818,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa ...@@ -817,6 +818,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa
cfShellIDList = RegisterClipboardFormatW(CFSTR_SHELLIDLISTW); cfShellIDList = RegisterClipboardFormatW(CFSTR_SHELLIDLISTW);
} else { } else {
*ppv = NULL; *ppv = NULL;
FIXME("Unimplemented interface %s\n", shdebugstr_guid(riid));
return E_NOINTERFACE; return E_NOINTERFACE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment