IronRDP
IronRDP copied to clipboard
Scancodes for native `ironrdp-client` incorrect on MacOS
MacOS uses different scancodes from windows and thus the native client requires a translation layer for MacOS.
I’m thinking about a HashMap
mapping from macOS to Windows scancodes.
@thenextman any input on this?
@CBenoit IIRC FreeRDP does a two-step mapping: they go from "system" key code to "virtual" key code, and from "virtual" key codes to scan codes. They should already have the tables etc. Check the input module in winpr to start.
Thank you for the pointer!