Tagged Questions

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

learn more… | top users | synonyms

8
votes
1answer
336 views

I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started

A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
7
votes
1answer
841 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 ...
2
votes
2answers
2k views

Compiling an application that uses WinUsb

I am in the process of writing an application to communicate with Usb devices using WinUsb.dll. This is a user-mode library that allows communication with a device through winusb.sys installed as its ...
1
vote
1answer
563 views

WDF UMDF driver install problem in windows 7 32 bit

I have a simple user mode usb driver that is installing and working fine in Windows XP 32 bit and Windows 7 64 bit, but for some reason fails to install correctly in Windows 7 32 bit. Do I need 2 ...
1
vote
1answer
160 views

Two Spinlocks on same processor?

Can two CPUs hold two "different" spin locks simultaneously at same time? So...does this mean: a sigle(uniprocessor) CPU cannot hold two "different" spinlocks at the same time? So...does this mean: ...
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
61 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
47 views

Migrating USB-driver from WDM to WDF

I'm about to migrate a USB-driver from WDM (actually built with Compuware's DriverWorks...) to WDF so I can build my driver for newer OS like WinVista and Win7. Anyway I have got stuck when trying to ...
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
246 views

UMDF driver for loopback joystick device

I'm trying to write a UMDF device driver for a loopback (virtual) joystick device in Windows, similar to the uinput device in Linux. I'm familiar with C++, C (on Linux) and C#, and the application ...
0
votes
1answer
148 views

Windows sample driver builds properly but will not install,

I don't know if this is the right place to ask, since its technically not a programming question, but it conecerns driver development so anyway: For a school assignment I have to take a look at the ...
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 ...
0
votes
1answer
92 views

WDF EvtIoDeviceControl buffer lengths

When handling DeviceIoControl requests in a WDF driver what is the correct way to get the size of the input/output buffer. It seems to be both passed as a parameter: VOID EvtIoDeviceControl(IN ...