Author: gadamopoulos
Date: Sat Aug 19 15:48:47 2017
New Revision: 75625
URL:
http://svn.reactos.org/svn/reactos?rev=75625&view=rev
Log:
[SHELL32] -CFSDropTarger: Improve the debug message that shows the first thing that is
copied or moved and where. This way we sort of know what parameters we pass to
SHFileOperationW.
Modified:
trunk/reactos/dll/win32/shell32/droptargets/CFSDropTarget.cpp
Modified: trunk/reactos/dll/win32/shell32/droptargets/CFSDropTarget.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/droptarg…
==============================================================================
--- trunk/reactos/dll/win32/shell32/droptargets/CFSDropTarget.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/droptargets/CFSDropTarget.cpp [iso-8859-1] Sat Aug 19
15:48:47 2017
@@ -75,7 +75,7 @@
return hr;
pszSrcList = BuildPathsList(strretFrom.pOleStr, cidl, apidl);
- ERR("Source file (just the first) = %s, target path = %s\n",
debugstr_w(strretFrom.pOleStr), debugstr_w(sPathTarget));
+ ERR("Source file (just the first) = %s, target path = %s, bCopy: %d\n",
debugstr_w(pszSrcList), debugstr_w(sPathTarget), bCopy);
CoTaskMemFree(strretFrom.pOleStr);
if (!pszSrcList)
return E_OUTOFMEMORY;
@@ -468,7 +468,7 @@
return E_FAIL;
}
pszSrcList = (LPWSTR) (((byte*) lpdf) + lpdf->pFiles);
- ERR("Source file (just the first) = %s, target path = %s\n",
debugstr_w(pszSrcList), debugstr_w(wszTargetPath));
+ ERR("Source file (just the first) = %s, target path = %s, bCopy:
%d\n", debugstr_w(pszSrcList), debugstr_w(wszTargetPath), bCopy);
SHFILEOPSTRUCTW op;
ZeroMemory(&op, sizeof(op));