Print source charset as well as a resulting codepage in FONT_mbtowc.

oldstable
Dmitry Timoshkov 2004-04-14 19:33:46 +00:00 committed by Alexandre Julliard
parent 0d34501876
commit 94945f736e
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ LPWSTR FONT_mbtowc(HDC hdc, LPCSTR str, INT count, INT *plenW, UINT *pCP)
}
}
TRACE("cp == %d\n", cp);
TRACE("charset %d => cp %d\n", charset, cp);
if(count == -1) count = strlen(str);
lenW = MultiByteToWideChar(cp, 0, str, count, NULL, 0);