From 5a576e0c891ddc745ea1f67bcca10f1386ff1849 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Sat, 29 Apr 2017 12:07:37 +0100 Subject: [PATCH] Reinstate use of ToUnicodeEx(). This was accidentally disabled by 73039b783, causing a regression in ability to type characters outside of the current Windows code page. --- windows/window.c | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/window.c b/windows/window.c index e01a3c32..89ddb863 100644 --- a/windows/window.c +++ b/windows/window.c @@ -3956,6 +3956,7 @@ static void init_winfuncs(void) HMODULE user32_module = load_system32_dll("user32.dll"); HMODULE winmm_module = load_system32_dll("winmm.dll"); GET_WINDOWS_FUNCTION(user32_module, FlashWindowEx); + GET_WINDOWS_FUNCTION(user32_module, ToUnicodeEx); GET_WINDOWS_FUNCTION_PP(winmm_module, PlaySound); }