[shell32.dll]

- replace DbgPrints with TRACE.

svn path=/branches/shell32_new-bringup/; revision=53534
This commit is contained in:
Claudiu Mihail 2011-09-02 19:56:58 +00:00
parent 18d876cbf2
commit 5beaebef93

View file

@ -189,12 +189,9 @@ static BOOL SHELL_ArgifyW(WCHAR* out, DWORD len, const WCHAR* fmt, const WCHAR*
DWORD used = 0; DWORD used = 0;
bool tildeEffect = false; bool tildeEffect = false;
TRACE("%p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt), TRACE("Before parsing: %p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt),
debugstr_w(lpFile), pidl, args); debugstr_w(lpFile), pidl, args);
DbgPrint("[shell32, SHELL_ArgifyW] Processing %ws\n", args);
DbgPrint("[shell32, SHELL_ArgifyW] fmt = %ws\n", fmt);
while (*fmt) while (*fmt)
{ {
if (*fmt == '%') if (*fmt == '%')
@ -391,7 +388,8 @@ static BOOL SHELL_ArgifyW(WCHAR* out, DWORD len, const WCHAR* fmt, const WCHAR*
if (out_len) if (out_len)
*out_len = used; *out_len = used;
DbgPrint("[shell32, SHELL_ArgifyW] Done result = %ws\n", out); TRACE("After parsing: %p, %d, %s, %s, %p, %p\n", out, len, debugstr_w(fmt),
debugstr_w(lpFile), pidl, args);
return found_p1; return found_p1;
} }