commit | 94945f736e8379a9ad00221be3b2a6018efc6baa | [log] [tgz] |
---|---|---|
author | Dmitry Timoshkov <dmitry@codeweavers.com> | Wed Apr 14 19:33:46 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Apr 14 19:33:46 2004 +0000 |
tree | 3a9eab73422448eca8aafc29adea5ab12a4ea288 | |
parent | 0d34501876a0dc80ca0c401bddbe9949e4e60710 [diff] |
Print source charset as well as a resulting codepage in FONT_mbtowc.
diff --git a/objects/text.c b/objects/text.c index b3d863e..a5950d6 100644 --- a/objects/text.c +++ b/objects/text.c
@@ -91,7 +91,7 @@ } } - 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);