Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to have an application sending data to control the mouse system-wide, like a real mouse. Based on the information I researched this design needs a driver, which reads data written by the application and interfaces with HID drivers. I do not know what kind of driver I need among the hundred kinds(function, upper/lower filter, minidriver, etc). Any ideas? Thank you.

share|improve this question
2  
Can you edit your question with some research you've done and some ideas about what you think you should do next? This will encourage others to provide useful information. – maerics Feb 4 at 16:34
What I needed to do is a lower filter driver, under mshidkmdf. To create the devices I needed to write HID descriptors, in this case a mouse descriptor. The information is exchanged with user mode by sending/receiving HID reports. – user2040213 Feb 28 at 18:20

1 Answer

Probably a filter driver. Look into the WDK sample: KMDF filter driver for a HID device

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.