18 Feb
2026
18 Feb
'26
11:01 a.m.
Rémi Bernon (@rbernon) commented about dlls/win32u/imm.c:
return res; } case WINE_IME_TO_ASCII_EX: + user_driver->pImeToAsciiEx( wparam, lparam, (BYTE *)params->state, params->msgs, 0, params->himc ); return ime_to_tascii_ex( wparam, lparam, params->state, params->compstr, params->key_consumed, params->himc );
IMO instead of adding another driver entry, we should move things from ImeProcessKey to ImeToAsciiEx. Whether host input is an IME, and whether builtin IME be called at all, should be done using the dedicated bit in the HKL (IME HKL have 0xe000 high word bits set). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9992#note_129869