I have in C# this function , for key press. When you press a key will be executed function a()
protected virtual void OnKeyPress(object sender, KeyPressEventArgs e) { a(); }
I need a method which to execute a function globally, in outside of my application , in outside of .NET Framework , anywhere in Windows.
Advanced thanks you!
PS: I don`t want to develop a malicious application, a constructive (antikeylogger method) ;)