Search code examples
c++winapisendkeys

Win32 equivalent of .net SendKeys


I am designing a system that reads a gesture from Kinect and make some actions. I am trying to include the system to be able to send HotKey to an application. My system is writing in c++ but the UI is in C++.net. I have been able to use SendKeys from the UI part and it does work.

Is there a Win32 equivalent so I can use it in my system?

Thanks in advance!


Solution

  • In WIN32, SendKeys is called SendInput:

    http://msdn.microsoft.com/en-us/library/ms646310(v=vs.85).aspx

    It can also simulate mouse movements, etc.