I want to write a software that intercepts the user input and changes it. In late windows 98 and before our language wasn’t supported officially so programmers decided to invent a writing method based on ASCII characters (ArmSCII) and a font so that we could write in our language. The software is just changing the english inpur to relevant characters in ArmSCII. The program is now old. I want to write a new one. and it should be system-wide. Any suggestions how can I hook into keyboard and change the input? C , C++ or C# that doesn’t matter. Im fine with all of them..
Share
Here is a Keyboard hook that intercepts user input and changes it to
printf("ha ha, I intercepted your [%c] and changed it to [%c]\n", key, key+1);Win32 console C/C++ code :