-1

I want to intercept Russian keys in a specific application and send it something else. I don't really know the steps required to achieve it.

Is there a way to write an app in C++ that captures key presses and sends different ones to a specific program, process?

πάντα ῥεῖ
  • 1
  • 13
  • 116
  • 190
user218046
  • 623
  • 6
  • 20

1 Answers1

0

I guess I had to find the answer myself so I've duckduckgoed and found this: C++ KeyBoard hook

Seems like I have to inject a DLL in a process and call SetWindowsHookExA function that supposedly ought to intercept and transform key events that are sent to the process.

user218046
  • 623
  • 6
  • 20