Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c6b6082d
Commit
c6b6082d
authored
Mar 05, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Mar 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Improve a TRACE and issue a FIXME if the interface is not implemented.
parent
a456e641
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
shfldr_unixfs.c
dlls/shell32/shfldr_unixfs.c
+3
-1
No files found.
dlls/shell32/shfldr_unixfs.c
View file @
c6b6082d
...
...
@@ -163,6 +163,7 @@
#include "shfldr.h"
#include "shresdef.h"
#include "pidl.h"
#include "debughlp.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
shell
);
...
...
@@ -795,7 +796,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa
{
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
;
...
...
@@ -817,6 +818,7 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_QueryInterface(IShellFolder2 *ifa
cfShellIDList
=
RegisterClipboardFormatW
(
CFSTR_SHELLIDLISTW
);
}
else
{
*
ppv
=
NULL
;
FIXME
(
"Unimplemented interface %s
\n
"
,
shdebugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment