kernel32: Add a trace to MultiByteToWideChar.
This commit is contained in:
parent
1ee6c9e3c5
commit
d32d5a4706
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue