Simulate mouse and keyboard input in C ++

I am looking for a way to simulate mouse and keyboard input in C ++. I am looking for a cross-platform library that will help me with this. Any suggestions?

Target platforms are desktop platforms ... Linux, Mac, and Windows only.

+3
source share
2 answers

No, I / O modeling is extremely platform specific, and even possible on the same platform. This is not a reliable method for any purpose, so you will not find good libraries for its implementation.

, API-, . , , , . , , , SDL.

, , debounce, , .. 10 .

+3
+1

All Articles