hello
I\'m writing a multilingual app and I\'m using a WH_KEYBOARD_LL
hook. I doesn\'t mater why I\'m using the hook, I\'m tried multiple things but this is the
That conversion is complicated. Even simple deadkeys are annoying to handle, and when using an IME gets very ugly.
Consider intercepting the messages where the input control receives the already converted character. But of course that's much uglier to code.
The problem is that a normal message hook requires dll injection into the target process, and that dll should not be written in C#. But perhaps there is some other message interception API that works without dll injection.