mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[shell32.dll]
- replace DbgPrints with TRACE. svn path=/branches/shell32_new-bringup/; revision=53534
This commit is contained in:
parent
18d876cbf2
commit
5beaebef93
1 changed files with 3 additions and 5 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue