kernel32: Add a trace to MultiByteToWideChar.

This commit is contained in:
Dmitry Timoshkov 2007-01-31 18:40:05 +08:00 committed by Alexandre Julliard
parent 1ee6c9e3c5
commit d32d5a4706
1 changed files with 2 additions and 0 deletions

View File

@ -1823,6 +1823,8 @@ INT WINAPI MultiByteToWideChar( UINT page, DWORD flags, LPCSTR src, INT srclen,
}
ret = 0;
}
TRACE("cp %d %s -> %s, ret = %d\n",
page, debugstr_an(src, srclen), debugstr_wn(dst, ret), ret);
return ret;
}