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.
This commit is contained in:
Jacob Nevins 2017-04-29 12:07:37 +01:00
Родитель d6d10932ac
Коммит 5a576e0c89
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -3956,6 +3956,7 @@ static void init_winfuncs(void)
HMODULE user32_module = load_system32_dll("user32.dll"); HMODULE user32_module = load_system32_dll("user32.dll");
HMODULE winmm_module = load_system32_dll("winmm.dll"); HMODULE winmm_module = load_system32_dll("winmm.dll");
GET_WINDOWS_FUNCTION(user32_module, FlashWindowEx); GET_WINDOWS_FUNCTION(user32_module, FlashWindowEx);
GET_WINDOWS_FUNCTION(user32_module, ToUnicodeEx);
GET_WINDOWS_FUNCTION_PP(winmm_module, PlaySound); GET_WINDOWS_FUNCTION_PP(winmm_module, PlaySound);
} }