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
482 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 ...
6
votes
2answers
2k views

Emulating joystick programmitically

I want to emulate a joystick using keypresses and/or mouse input. So other programs/games will think that user is using a joystick while he is using a mouse. So the program will install kindof a ...
5
votes
3answers
771 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 ...
5
votes
1answer
212 views

How can I develop windows driver that does not touch hardware?

I need to create a WDM driver that emulates a device that is not present. The driver needs to be loaded when the O/S boots, opened and closed via SetupDiXXX and CreateFile, needs to respond to ...
4
votes
2answers
121 views

Kernel mode programming using simplistic c++?

I am about to delve into kernel land. My question relates to the programming language. I have seen most tutorials to be written in C. I currently program in C++ and Assembly. I also studied C before ...
4
votes
7answers
270 views

Going down from C++ to C: alternative to std::map?

I am looking for minimalistic alternative for std::map<long, int>, which would go into Windows kernel driver, so it should be quite fast.. it is expected to hold a relatively small (~200 in ...
4
votes
1answer
270 views

Communication between delphi application and Windows NT system driver

I am trying to build a very simple driver. Its sole purpose will be to register "PsSetCreateProcessNotifyRoutine" and on callbacks recieved from kernel, notify my Win32 application about which ...
4
votes
4answers
2k views

DDK/WDM developing problem … driver won't load on x64 windows platform

I am a beginner at DDK/WDM driver developing field. I have a task which involves porting a virtual device driver from x86 to x64 (intel). I got the source code, I modified it a bit and compiled it ...
3
votes
1answer
501 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
0answers
63 views

Can I write a Windows filter driver for an HID device to invert vertical scrolling?

I would like to emulate OS X Lion's inverted vertical scrolling using a trackpad on Windows. I wonder if it would be possible to create a filter driver for a target HID device, intercept ... something ...
2
votes
0answers
149 views

Windows .inf files: how do I set the default Network Connection name during network driver install?

I'm trying to adapt the open source TAP-Win32 driver for my project. When it installs (at least on Windows 7, and I think Windows XP too) it creates a device named "TAP-Win32 Adapter V9" in the ...
2
votes
0answers
104 views

Canceling a WSK I/O operation when driver is unloading

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 ...
1
vote
1answer
43 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? I get error message such as C1083: Cannot open include file: ...
1
vote
1answer
51 views

Windows (64) Kernel Driver and pagable Functions

i wrote a C tool to mess around with the windows kernel a bit. Now as we can see there are several functions inside the "PAGE" section, meaning this functions of the kernel can be paged out. I know ...
1
vote
1answer
85 views

How to pass DDK makefile variable to MS-DOS batch

In DDK makefile, there is predefined macro/variable $(O), whose value is sth like objchk_win7_x86\i386. In MS-DOS batch, it calls 'build' into this makefile. and next I would like to use the ...
1
vote
1answer
132 views

Where is msvcrtd.dll?

Where can I find msvcrtd.dll (the debug CRT), corresponding to \WinDDK\7600.16385.1\lib\Crt\i386\msvcrtd.lib in the Windows Driver Kit?
1
vote
0answers
76 views

PCI instance ID format

What is the algorithm for instance ID assignment to PCI devices in Windows 2000/XP? For instance, if device instance ID is ...
1
vote
2answers
396 views

C Driver programming blue screen of death

Hello and a happy new years eve/new year everybody, I'm having some problems with the driver I'm currently making. Everything works fine up until I get to handle an WriteFile() request. My driver ...
1
vote
1answer
192 views

Signtool stopped adding countersignature - what's up?

I recently faced a very strange problem. Compilation of our products includes signing the kernel-mode drivers and adding a countersignature. This is done using a call to signtool, included in the DDK ...
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
372 views

Fastest way to pass a file's contents from Kernel to User mode?

I'll try to be brief, but fully descriptive: This is Windows-specific. Using the Windows Driver Development Kit (DDK). I am writing a Kernel Mode Driver (KMD) for the first time, having no prior ...
1
vote
1answer
586 views

Windows 7 Driver for Print to XPS

The link to the Windows 7 DDK (or WDK) is not something I seem to be able to get to. I need to write a driver that will convert the content to XPS and then do something with it. The "do something" is ...
1
vote
1answer
84 views

Start application from driver

HI, Can I start another application from a driver code? The code is written in C and compiled with DDK.
1
vote
3answers
562 views

How to add a virtual driver like CD Emulation in Windows Explorer

I'm not familiar with kernel driver development, so I want to know if there are other easy ways to add a virtual driver like CD Emulation in Windows Explorer.
1
vote
3answers
247 views

Help for driver programming

I want to write a driver (in c) that can "catch" the events for reading and writing on hard disk. My problem is that I do not know how can I listen the system bus to treat these events. I use ...
1
vote
2answers
789 views

Error when compiling with Windows DDK

Forgive me for being a complete newbie with Windows DDK. I have create a simple file named test.cpp: #include <windows.h> #define BAD_ADDRESS 0xBAADF00D int __cdecl main(int argc, char* ...
0
votes
0answers
29 views

HealthVault DDK - USB device notification - Handle needed

I am using the HealthVault DDK and want to get notified if an usb device is plugged in or out. I've got some sample code working in a normal Windows Exe. However, I need a handle for ...
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
29 views

How to directly modify volume sectors from a driver?

I need to modify volume sectors directly. For that purpose I developed a driver that works through "\Driver\Ftdisk". But this approach doesn't work for dynamic volumes. Is there any other way to ...
0
votes
2answers
69 views

How do the Windows DDK samples deal with being paged out? I don't see much code dealing with it in the samples

How come the Windows DDK samples do not deal with being paged out? Are they non-pageable?
0
votes
1answer
79 views

Spawning a kernel mode thread - Windows

I have intensive processing that I need to perform in a device driver, at DISPATCH_LEVEL or lower IRQL. How do I create a kernel-thread? What IRQL does it run at? Can I control this? How is it ...
0
votes
3answers
114 views

How do I write a driver for a Virtual CD Drive or a CD Emulation drive?

I want to develop driver for a Virtual CD Drive or a CD Emulation drive. How do I go about starting? I found these links these links from the MSDN: Windows Driver Kit Introduction to the Windows ...
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
78 views

RtlStringCbCopy Function of the Windows Driver Kit

According to the MSDN documentation, the RtlStringCbCopy safe string function should be like this: NTSTATUS RtlStringCbCopy( __out LPTSTR pszDest, __in size_t cbDest, __in LPCTSTR pszSrc) ...
0
votes
2answers
86 views

Opening a handle to a driver from user mode

I have a driver and I created a symbolic name to it. The symbolic name is ... L"\\DosDevices\\hook" When I try to access the device object using CreateFile() from usermode, I always get an error, ...
0
votes
0answers
33 views

Error in Saving SURFOBJ as bitmap

I am working on sample Graphics driver. In that I am hooking to “DrvStretchBlt” function. The 2nd parameter to this function is source surface of type SURFOBJ. I tried to save this surface as ...
0
votes
3answers
411 views

wdk ddk compiler problems with std::string and std::wstring

I've started playing around with the WDK / DDK (I'm assuming they're the same thing) samples and in particular the printer port monitor example. I've got this compiling using their build tool and I ...
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
57 views

How to build 2 device drivers with a small amount of shared code

I've inherited a Windows driver that handles multiple device types. I need to separate it into 2 separated drivers, one for each device. There's code for each device, and then code that is common to ...
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
194 views

2 Mice, capturing exclusively one mouse on windows (DirectInput, DDK, Linux, anything)

I have connected 2 mice to PC and I wish one mouse to work as regular mouse and capture second mouse exclusively. First I was trying DirectInput. It showed 2 devices with word mouse in InstanceName. ...
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
86 views

Enumerating processes that record or playback on Windows XP

I would like to enumerate all processes, which have an open handle for any of the soundcards in the system. Ideally I would like a "process - sound card - action" relation, where action might be ...
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
77 views

How to share source code when we develop Windows device drivers

TARGETNAME=OneOfMyDrivers TARGETTYPE=DRIVER INCLUDES=..\inc;..\..\Common\Crypto TARGETLIBS=$(SDK_LIB_PATH)\wdmsec.lib SOURCES=OneOfMyDrivers.c \ OneOfMyDrivers.rc\ ...
0
votes
3answers
1k views

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 is the "__success(return >= 0)"? 2. In "ntstatus.h", ...
0
votes
2answers
523 views

Windows DDK development with MinGW?

Is it possible to develop a Windows driver (specifically a PDF-like printer driver that displays the data on-screen instead of actually printing) without using Visual Studio? I'm thinking of using ...
0
votes
1answer
67 views

I am not able to inlcude NTDDk header!

I am trying to include the header but its unreconized..Do I need to change any project settings..help me please!!

1 2