Top "Wdk" questions

For questions about the Windows Driver Kit (WDK, formerly WinDDK), which includes the tools and documentation needed to develop drivers for the Windows platform.

warning C4996: 'GetVersionExW': was declared deprecated

I am working on VS 2013 in Win 8.1. How to solve this warning?

visual-c++ visual-studio-2013 wdk
What is a Windows Kernel Driver?

What is Windows Kernel Driver written with the WDK? What is different from normal app or service?

winapi wdk
Error building sample driver: An SDK corresponding to WDK version '8.1' was not found

I used one Windows Driver samples from github (Filesys) and tried to build it on Windows 10 with Visual Studio 2015. I …

visual-studio msbuild windows-10 wdk
Virtual Webcam Driver

I want to develop a virtual webcam driver which from User mode I'll pass image to it and it will …

c++ webcam directshow device-driver wdk
Cannot open include file: 'ntddk.h'

I'm been trying to get into driver development (queue the "don't do that") I have been looking at this msdn …

c++ visual-studio-2015 driver wdk
How to understand the "NTSTATUS", "NT_SUCCESS" typedef in windows ddk?

Two questions: 1. In "ntdef.h" the NTSTATUS is defined as follow: typedef __success(return >= 0) LONG NTSTATUS; what the hell …

c driver wdk
WDK (Windows Driver Kit) and VC++ headers problem

I'm trying to read from an USB HID device, I know how to do it in C# using DLLImport hid.…

visual-c++ usb hid wdk
What is winapifamily.h?

Can't find it in Windows SDK and DDK, but some of our existing code includes it. The only meaningful link …

windows sdk wdk
Creating a virtual HID device

I'd like to create a virtual HID device (emulate it with a driver). It must be visible to clients that …

virtual hid wdk