Commit d32d5a47 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kernel32: Add a trace to MultiByteToWideChar.

parent 1ee6c9e3
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment