-2

I want to make simple driver that will simulate keyboard input at driver level. My first idea was to make simple kbdclass filter driver. But at this point I can't inject my input whenever I want(I need to wait for IRP and then change KEYBOARD_INPUT array). Can somebody explain me how could it be done? Also this need to be done in old manner (No kmdf at all). Thanks!

  • *"Can someone help me with this stuff?"* is not a question that fits Stack Overflow. See [ask]. – IInspectable Feb 26 '20 at 10:24
  • 1
    look for `IOCTL_INTERNAL_KEYBOARD_CONNECT` - save here `CONNECT_DATA` and call `KeyboardClassServiceCallback` yourself – RbMm Feb 26 '20 at 16:27

1 Answers1

0

Look at the VHIDMini2 driver in the WDK

Brian
  • 305
  • 1
  • 11