Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
3k views

“fatal error U1087: cannot have : and :: dependents for same target”

Using the Microsoft Driver Development Kit (DDK), this error plagued me as I attempted even to build the default drivers included with the DDK. I had a some difficulty in tracking down the cause and ...
7
votes
2answers
481 views

DDK “Hello World”

How does one begin writing drivers for Windows? Is there some sort of official DDK "Hello World" example out there? While I'm sure it will be way above my head at first, eventually I would like to ...
5
votes
3answers
769 views

Windows: Is it *possible* to create a (virtual) video card driver?

i want to create a virtual monitor. The way this would work is that the virtual monitor would appear in a window on my desktop. As far as Windows knows it is just another monitor. It occurs to me ...
4
votes
1answer
111 views

Linux spin_lock vs. NT KeAcquireSpinLock

From what I can gather: NT's KeAcquireSpinLock is equivalent to spin_lock_bh: the one raises IRQL to DISPATCH_LEVEL, the other masks the bottom half interrupts -- functionally the same. While the NT ...
4
votes
3answers
3k views

Virtual Webcam Driver

I want to develop a virtual webcam driver which from User mode I'll pass image to it and it will display as webcam output. I don't want to use DirectX filter and CSourceStream etc. Because they ...
3
votes
1answer
499 views

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 implement standard HID detection: Call HidD_GetHidGuid() – Get the HID device class GUID Call ...
2
votes
2answers
113 views

Registry Filter Driver for XP

I want to make a registry filter driver specifically for Windows XP. I know there is an example in the official WinDDK but it only works on Windows 7. Is it even possible to develop a registry filter ...
2
votes
1answer
200 views

Using VC intrinsic in kernel space

My question is how to use intrinsics in kernel space (on Windows), when the header file is contained with the SDK (as installed from VC 10) and the WDK which I'm using to compile the driver has no ...
2
votes
1answer
346 views

Is there a way to emulate arrow keys in Windows keyboard drivers?

I am currently writing a keyboard driver for Windows, that provides an additional modifier and allows to directly type some additional characters. For example real quotation marks (“, ”, ‘, ’, …) and ...
1
vote
1answer
24 views

including DDK headers

I'm having a bit of trouble including headers from Windows Driver Kit to Visual Studio 2010. Can anyone help me, what I am doing wrong? VC++ Directoy settings: include directory settings #include ...
1
vote
1answer
58 views

Is it possible to drop IRPs in File System Filter Drivers?

I have a couple of signatures and I want to build a File System Filter Driver which can check all possible operations with the signatures. If a match is found than the Filter Driver should drop the ...
1
vote
1answer
71 views

Any Equivalent of strstr in Windows Kernel Mode?

I am writing a windows kernel mode driver in which I will have to manipulate lots of strings. Everywhere it has been advised to use "Safe String" functions instead of normal C functions. However, many ...
1
vote
1answer
146 views

Raw ethernet broadcasting

I downloaded WinDDK and am using ndisprot 5x to broadcast raw ethernet packets from my user app, specifying destination MAC all 0xff's, on large and repetitive data sets it doesn't seem to be very ...
1
vote
0answers
125 views

Developing a Windows driver without using Microsoft's compiler

My team has a C-language codebase that is used in several embedded systems of varying platforms. We have a group of people that are trying to port part of this codebase into a Windows driver. ...
1
vote
2answers
106 views

Reading file in Kernel Mode

I am building a driver and i want to read some files. Is there any way to use "ZwReadFile()" or a similar function to read the contents of the files line by line so that i can process them in a loop. ...
1
vote
1answer
260 views

Convert char array to Unicode

I am developing a device driver in Visual C++. I need to convert a character array to Unicode as well as wide character array in my driver. Pointer to useful functions will be appreciated. I know ...
1
vote
0answers
66 views

Is it possible to customize upper or lower filters in a Hardware Profile?

To set a filter driver on a specific class of devices, you have to modify its UpperFilters or LowerFilters MULTI_SZ registry value. For example, to attach an upper filter to all devices belonging to ...
1
vote
0answers
79 views

How can I output traffic information (IP, port, etc.) to a log file using Windows Filtering Platform and Windows Driver Development Kit?

I am working on a driver using WDK that will monitor network traffic and output it to a log file. I am currently trying to modify the inspect example given in the WinDDK directory. It seems that I ...
1
vote
1answer
121 views

Printer Driver Development - from 32 to 64 bits

I've developed a driver that is compiled for 32 bits system. The driver is unidriver based. Does anyone knows what should be needed to get the driver compatible with 64 bits? What changes should I ...
1
vote
1answer
490 views

Win32 DDK: Is calling API from driver interrupt wrong?

Note: This is not a problem i'm experiencing, but it is something i'd like to understand (just because i want to be a better person, and to further the horizon of human understanding). In ...
1
vote
6answers
2k views

How to build workspace from DDK examples

I am new to win32 programming and also to driver programing. I have installed windows DDK on my system and have got some examples with the DDK but those examples dont have dsw file, i wanted to know ...
1
vote
2answers
722 views

Using WinDDK test utilities with Visual Studio 2005

I'm currently trying to run the NdisProt driver given by WinDDK 2003. I've build and installed the driver successfully. It comes with a test utility named uiotest When I build the utility with make ...
0
votes
1answer
58 views

Building thrift application on Windows 7

Is there any way to build thrift 0.8 on Windows? I have Microsoft Visual Studio 2008 ( v9 ), boost 1.48 and WDK 7 I found several errors in my test... for example, I had to change: in ...
0
votes
0answers
18 views

Unable to run application from image mounted with my Driver due to security privileges (?)

I have a file system driver that helps create a virtual drive and executing application from it. I am working on Windows 7, x86 and x64 OS versions. The application files are put in a "app.IMG" file. ...
0
votes
0answers
39 views

how to get the dsf code below to work?

I wish to send input to multiple emulated mice using dsf(device simulation framework) incuded in the current windows ddk. My code is below the problem is device manager recogizes the device got added ...
0
votes
1answer
115 views

Windows Filtering Platform Traffic Inspection Sample does not work as expected

Hi Experts am trying to figure out what is wrong with my code. i took the sample from the winddk WDK 7600.16385.1 ,there is a sample code called inspect. when i run it i get unexpected results on win ...
0
votes
1answer
53 views

Alternatives to Windows 7 device ContainterIDs

How would I identify which devnodes belong to a single physical device in earlier version of windows? EDIT: The reason I would like to do this is because implementing an event system that broadcasts ...
0
votes
0answers
66 views

how to send input to multiple emulated mice using dsf(device simulation framework)?

How do i send input to 4 different emulated mice? This is specific to dsf(device simulation framework). I would like to send an input report to the emulated usb mouse devices the script creates in ...
0
votes
1answer
115 views

CreateFileMapping for Directory

I have this function which gives the full file name(path) from the file handle. The only problem is CreateFileMapping fails for directory handles. Is there a workaround for it? I get the handle using ...
0
votes
1answer
15 views

Winddk APIS: KeQueryActiveProcessors and KeQueryMaximumProcessorCountEx

I need to find number of logical processors on windows for Intel hw (I am writing a simple driver). I found two windows APIs. KeQueryActiveProcessors tells currently active processors. ...
0
votes
2answers
195 views

Using windows DDK with C#

For a little background story, I work in a computer lab and we need to have an easy method to disable certain network protocol bindings on adapters based on their PCI bus locations. So far I have ...
0
votes
1answer
98 views

How to determine what drives (volumes) show up in “Safely Remove Hardware” dialog?

I have an application that watches for file system events. This requires a permanently open handle to the target volumes. This is fine for things like the system boot drive and other fixed devices but ...
0
votes
1answer
27 views

Keeping data per open instance of a device

In a Windows device driver: per-driver information is stored in global variables per-device information is stored in the DEVICE_OBJECT.DeviceExtension As far as I understand, a CreateFile ...
0
votes
1answer
80 views

What is the purpose of the 'WaitReason' parameter on KeWaitForSingleObject()?

The MSDN docs don't explain what happens for the various options here (despite being quite clear about the 'WaitMode' paramter). Why would I pick 'Executive' over 'UserRequest' or the myriad other ...
0
votes
1answer
45 views

Windows version macros in windows drivers

_WIN64 can be used to find the platform to be 32-bit or 64-bit. Are there any macros available in drivers (kernel mode code) that can be used to tell the version of the operating system. XP, 2003, ...
0
votes
1answer
302 views

#pragma alloc_text(PAGE) code not page-aligned

I'm facing a (possible) problem with DDK (a quite old version: 3590) for WinXP 32 bit. My driver contains some static variables not inizialized (they should be assigned to .bss section, I suppose) and ...
0
votes
1answer
44 views

How to get the include paths of WDM compiler?

I'm reading the source code of some device driver for Windows XP, and I want to know the exact include paths of the WDM compiler. I know that these should be included : C:\WinDDK\7600.16385.1\inc\api ...
0
votes
1answer
53 views

What causes the differences between a driver on disk and a driver mapped to memory?

Hey, Today I tried to do a binary diffing of NDIS.sys, and I noticed something weird. I took a function, and began to diff it. The first 30 bytes were the same on the disk(using IDA) and on ...
0
votes
3answers
364 views

Including a Windows DDK Header

I am writing a user-space Win32 application. However, as part of this application I need to make some DeviceIo calls to the Windows 1394 stack. The header file which contains the prototypes for ...
0
votes
2answers
172 views

Microsoft Driver Verifier

In Verifier Dialog, there is a window to select drivers to verify. The list control has 4 column. 1. Verify? 2. Driver name. 3. Provider 4. Version My driver's provider and version are represented ...
0
votes
1answer
360 views

Trouble installing sample portio driver from winDDK

I am currently trying to build an application, that will 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, and which ...
0
votes
0answers
69 views

IR_TRANSMIT_PARAMS.TransmitPortMask values?

I have look around everywhere and cannot find any documentation about the values to put in TransmitPortMask of IR_TRANSMIT_PARAMS structure for use with IOCTL_IR_TRANSMIT. All the documentation says ...
0
votes
1answer
260 views

'align' : unrecognized extended attribute

I was working with vc 6 and win ddk 3790.1830, now i have instsalled visual studio 2005 and win ddk 6001.18002 now when i compile my code i am getting "'align' : unrecognized extended attribute" ...
0
votes
1answer
751 views

Readfile and Writefile in win32 fails with error code 1

Code : hHCDev = CreateFileA(completeDeviceName, //"F:\\test.txt", GENERIC_WRITE|GENERIC_READ, FILE_SHARE_WRITE|FILE_SHARE_READ, ...
0
votes
1answer
982 views

What replaced usbioctl.h?

I'm trying to create a test module for one of our USB devices and I'm using Windows XP with the Windows 2003 DDK. When I include the I'm getting a warning that it is obsolete, but without getting ...
-2
votes
2answers
56 views

Cannot Open Devcon

I installed WinDDK 7600 in my Windows XP operating system.Now,when I double click the devcon.exe(Location- D:\WinDDK\7600.16385.1\tools\devcon\i386),the command prompt is just showing up and suddenly ...