I\'开发者_C百科m developing a driver in Windows Filtering Platform and I need the process ID of another process to do what I need to do.
I\'m trying to compile the open source project Programmer Dvorak. The problem is that it\'s a bit old and doesn\'t build with the current versions of the build tools.
Two questions: 1. In \"ntdef.h\" the NTSTATUS is defined as follow: typedef __success(return >= 0) LONG NTSTATUS;
I\'m trying to read from an USB HID device, I know how to do it in C# using DLLImport hid.dll, but I want to do it from C++, this way I don\'t have to declare all the structures, etc, and just include
I want to create a software which can accept Print Jobs from other computers, and then route those print jobs to PCs on开发者_开发百科 LAN with printers attached.
In the Windows Driver Kit (WDK) there are some driver code samples written in pure C, but sprinkled with some try-catch-finally constructs. Does someone know their semantics ? Thank you microsoft for
I\'ve been learning how to write drivers with the Windows DDK recently. After creating a few test drivers experimenting with system threads and synchronization, I decided to step it up a notch and wri
I am currently trying to build an application, that w开发者_开发技巧ill talk to the super IO chip using port IO. As part of that, I am trying to develop a kernel-mode windows driver that I can contact
Many Zw* functions that work with files (such as ZwCreateFile) need to be called at PASSIVE_LEVEL with APCs enabled: http://msdn.microsoft.com/en-us/library/ff566424%28VS.85%29.aspx. This is because,
How to write simpliest audio virtual device driver in WinXP? I know that one way is to write a WDM driver but I suppose it is not an easyly task. I need to implement some audio filtering for a Flash b