how could you detect if there is a keystoke recorder running ?
i suppose you could hook the api, but is there another way?
thanx
i suppose you could hook the api, but is there another way?
thanx
Use a WH_DEBUG hook, that way you can monitor all hook activity on the system. Just check the wParam for a WH_KEYBOARD or WH_JOURNALRECORD hook in your DebugProc. Return non-zero to block the hook.
Donkey
Donkey
ahh yes.
thanx a lot!
thanx a lot!