Windows Driver Foundation (WDF) is a set of Microsoft tools that aid in the creation of device drivers for Windows 2000 and later versions of Windows
4
votes
5answers
160 views
+300
Restrict access to audio device under Windows XP-8 to specific application/user
I have written an c# 4.0 application that analyses the microphone input and records DTMF tones that represent credit card numbers entered by our clients. This all works well, but since we are working ...
0
votes
1answer
101 views
WDF Coinstaller issue
I'm having problem installing my KMDF 1.9 driver on a 32-bit Vista machine running KMDF 1.5. I was hoping the coinstaller should update the Vista machine to KMDF 1.9. But it does not.
What have I ...
0
votes
1answer
105 views
Generate kernel-level mouse input in Windows
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 ...
0
votes
1answer
125 views
CreateFile doesn't prevents other processes from opening my device
I'm using CreateFile to open a connection to my USB hardware. If I have two (or more) hardwares connected to the PC I would like to prevent several instances (different PIDs) of my PC-application to ...
0
votes
1answer
346 views
Multiple device driver? (KMDF/WDF)
I've just written a KMDF USB driver. Now I want to connect several (up to at least four) devices to the PC. Where do I start? I've noted that when I connect the second device to the PC it use the very ...
0
votes
0answers
37 views
MSI-X interrupts in WDF
I'm having a lot of trouble getting MSI-X interrupts implemented in a Windows bus driver we're writing in WDF / KMDF.
I've read the MSDN documentation, and there's not really a lot of helpful info ...
0
votes
0answers
278 views
PCIe Device to Host DMA not working (Windows 7)
We are writing a Windows 7 KMDF PCIe device driver for a storage device that is
capable of DMA read & write. We have followed the KMDF framework completely and
verified using DriverVerifier and ...