Since our applications run in fullscreen mode, we have developed a keyboard hooking driver to disable user input for keys like ALT+F4
, CTRL+ALT+DEL
and so forth.
The driver is developed in C using the Windows Driver Kit.
Compiling for 32-Bit works and it loads the driver on Windos 7 32-Bit and it works as expected.
Compiling for 64-Bit works and it just doesn't load the driver on Windows 7 64-bit (but is signed and listed in the keyboard drivers).
Following are our SetEnv
settings:
setenv c:\WinDDK\7600.16385.1 fre x64
Is there anything I'm missing?
Do I need to make specific changes to the code to make it work on 64-Bit?