Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
551 views

Automating Win32 Driver Testing

Does anyone know ways of partially or fully automating driver test installation? I am new to driver development and am used to more of a test-driven approach in higher level languages, so moving to ...
13
votes
2answers
2k views

Raw PDO to send IOCTL to upper filter driver (kbfiltr/moufiltr) to enable/disable device

I am quite new to driver development and trying to write a simple filter driver that will enable or disable a keyboard or mouse device. If I can make it work, I want to use it to disable the touchpad ...
12
votes
5answers
699 views

Differences between struct in C and C++

I am trying to convert a C++ struct to C but keep getting "undeclared identifier"? Does C++ have a different syntax for referring to structs? struct KEY_STATE { bool kSHIFT; //if the shift key ...
7
votes
1answer
839 views

Sending IOCTL from IRQL=DISPATCH_LEVEL (KbFilter/KMDF)

I am using the KbFilter example in the WDK, trying to send an IOCTL in a function that is called by KbFilter_ServiceCallback and therefore is executed at DISPATCH_LEVEL. The function just has to send ...
3
votes
1answer
381 views

Smartcard Driver (KMDF with SCardLib) Issues

I'm developing Smartcard Driver using KMDF and SCardlib, I used the WDK Smarcard Sample as reference, I think I implemented all of the callbacks correctly except for CardPower and CardTracking. (My ...
2
votes
1answer
83 views

Guides for adding 64-bit support to a KMDF driver

Are there any guides or documentation for adding 64-bit support to a KMDF driver? I have a good set of links for WDM drivers, but it would be nice to see a KMDF-specific guide showing what KMDF ...
2
votes
2answers
1k views

Accessing a Toshiba Laptop Accelerometer Device Driver

I have a new Toshiba Satellite Pro S300 laptop (running Windows XP) which sports a 3D accelerometer for HDD protection. I'd like to tap into the data sent by this sensor. Older Toshiba laptop/Tablets ...
1
vote
1answer
58 views

Which APIs should I use to expose WebCam functionnalities?

I am trying to design a Windows KMDF driver for an old USB Webcam. I think I have enough informations on the driver development / USB protocol side, but I am wondering how I should expose the webcam ...
0
votes
0answers
40 views

Creating WDF read request out of nothing?

Background: I'm writing a virtual USB to RS232 driver. But since my hardware is a USB-chip (PDIUSBD12) and not a pure UART chip the driver needs some special tweaks. A PC using something like the ...
0
votes
0answers
89 views

Event based notification between 32 bit app and 64 bit driver in KMDF

I am developing a driver using WDF / KMDF and adapting the OSRUSBFX2 'final' example driver. http://msdn.microsoft.com/en-us/library/ff544368%28v=vs.85%29.aspx I am attempting to implement some ...
0
votes
1answer
50 views

UMDF- lock device in application level

I'm writing a simple USB driver for our device using UMDF over WinUsb. The driver can be used by multiple application concurrently. I need to achieve a custom locking system that the ...