1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-13 09:08:06 -05:00

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
parent d6d10932ac
commit 5a576e0c89

View File

@ -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);
}