gdi32: For symbol fonts check whether the char has been converted to Unicode.
commitc1f742021fe4898345e9b0ae6b76e8eebcf0f95e
authorDmitry Timoshkov <dmitry@baikal.ru>
Fri, 22 Jun 2018 10:35:43 +0000 (22 11:35 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 22 Jun 2018 10:45:33 +0000 (22 12:45 +0200)
treefde5eab4ae3d44363ebc73a63ca195af1f06024d
parent718c34b0d4479505de62434497b43cdc7957cdc2
gdi32: For symbol fonts check whether the char has been converted to Unicode.

This means that Unicode versions of text functions can use the result
of a A->W conversion under CP_ACP.

It's required so that the following will work:
  hfont = CreateFont("Wingdings", SYMBOL_CHARSET);
  SendMessageA(hwnd, WM_SETFONT, hfont);
  SendMessageA(hwnd, WM_SETTEXT, textA);

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
dlls/gdi32/freetype.c