The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
64 views

Convert Visual Studio Solution and Project Files to DDK Build

I know products (such as VisualDDK) exist to use Visual Studio as a front end while using the DDK to build a project but I have the exact opposite question. Are there tools to take an already ...
2
votes
1answer
48 views

IoGetDevicePropertyData() returns STATUS_OBJECT_NAME_NOT_FOUND

I'm updating a functioning KMDF driver for a PCI device, using WinDDK 7600.16385.1 and OSR's ddkbuild.cmd, targeting WLH, testing on Win7 x86 and x64. I'm attempting to retrieve the ...
0
votes
0answers
113 views

Unidrv print driver with render plug-in not supported on Win7 64-bit?

I have a "print to PDF" printer driver that I created and it works well in Windows XP, Vista, and 7, 32-bit, but not in Win7 64-bit (haven't tested other 64-bit versions). When I attempt to install I ...
0
votes
0answers
188 views

Create WinUSB Driver for Windows XP

We have developed a Device Driver on top of WinUSB device driver provided by Windows DDK, our device is a fingerprint scanner having "Cypress EZ-USB FX2LP™ USB Microcontroller". To communicate with ...
0
votes
1answer
157 views

How to install pscript/unidrv rendering plugins? DDK/WDK print/oemdll samples are acting strange

I'm trying to get something of pscript/unidrv rendering plugins, but the provided DDK samples just can't be installed on any possible combination of DDK/build/target system I ever have. The message ...
0
votes
1answer
51 views

Rename the 'makefile' build.exe expects to something that won't clash?

In the DDK/WDK the build.exe expects certain files in a folder. As soon as you give a sources file, you are also expected to have a makefile in the same folder. Obviously this name clashes with all ...
7
votes
1answer
101 views

Is it possible to retrieve the CPU that created a WDFREQUEST?

I am trying to affinitise the completion of CompleteRequest to the CPU that originally issued the request. Is there a way to retrieve the CPU that issued the request during FdoDeviceControl or any ...
0
votes
2answers
81 views

Generate custom error message from makefile with WDK build tools

I'm compiling a driver using build.exe from the Windows Driver Kit. The system which builds the drivers needs to have a specific environment variable set. If not, I want build to fail with a custom ...
5
votes
0answers
145 views

How do I create a network bridge programmatically? [closed]

I want to create a network bridge between two adapters in windows 7 using c#. I could not find proper documentation for the API to access the components and create the bridge. Please help me to find a ...
2
votes
2answers
255 views

Win7 64bit legacy nt4 driver signing issue

it's been since WinXP I don't use the Windows DDK (now WDK) and I've noticed something big is changed. I'm developing a legacy NT4 filter driver (without .inf and without .cat) with the latest Win7 ...
0
votes
0answers
127 views

Print driver with XCV fails to OpenPrinter under MS VISTA with UAC enabled

all. I am looking for an advice. I have created a custom print driver which works fine for all MS OSs, except Vista. Driver uses Xcv to send additional data from/to printer port. With UAC enabled ...
0
votes
0answers
66 views

SCSI port vs storport

WHen I call IoBuildDeviceIoControlRequest(IOCTL_SCSI_MINIPORT,... ) to set up IRP from my driver, how do I know which driver (storport or scsiport) it is going to considering I have both of them in my ...
0
votes
0answers
23 views

Windows drivers: Scatter gather

WSARecv vs readfilescatter WSASend Vs WriteFileGather WHich of these 2 functions are better for implementing scatter gather on WIndows?
0
votes
1answer
30 views

Windows drivers: Scatter gather win32

Is it possible to do scatter gather via DeviceIOControl function? Writing a scatter gather function to read and write. Any idea if ReadFile Scatter and WriteFilescatter work?
0
votes
0answers
126 views

Copyright of using the Microsoft DDK header files in commercial projects [closed]

In our commercial projects, we copied some header files, extracted some structure and macro definitions from Microsoft DDK. Our projects are distributed in binary. We are worried that if we have ...
0
votes
0answers
43 views

WIn driver bluscreen issue

Driver bluescreened with the following error. This error I got from WInDbg ERROR_CODE: (NTSTATUS) 0xc0000005 - The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be ...
0
votes
1answer
75 views

Windows Driver for multithread app

Developing a Windows driver and providing dll for multithreaded applications to call driver functionalities. pDriverObject -> MajorFunction[IRP_MJ_CREATE] = XXX_Create. How do I handle multiple ...
0
votes
0answers
60 views

Writefile returns ERR 0x1F 31

Getting 31 only with same pattern for e.f if i write a buffer with 256 bytes , all bytes same for e.g 0xAA or 0xFF , I get this error. If i write buffer with different data buyes, then it works fine. ...
0
votes
0answers
67 views

WIndows driver - reading buffer from kernel space - IRP issue

My driver implements Buffered I/o for read. Test code Read fails. ReadFile takes argument a buffer of appropriate size but ReadFile returns error code 122 when GetLastError() called. 122 is ...
0
votes
1answer
313 views

What is the Microsoft name for WinDDK version 6001.18001?

I am trying to compile an old piece of code from 2009. In the compiler instructions the developer used Visual Studio 2008, .Net 2.0, and WinDDK: Microsoft Windows Driver Kit I need to know about ...
0
votes
0answers
30 views

Registry operations to add WInXP .sys file

I have built my own driver using wdm on winddk. Need to know how to install the same. How will i add a registry entry for the same. How will I get a device for \.\Device so that I can read, write ...
-2
votes
1answer
293 views

WIndows driver to copy from user space to kernel space [closed]

New to Windows drivers . Read some stuff. Reasoning based on thatBased on that - WIndows driver to copy from user space to kernel space (known physical memory location). 1. What type of driver should ...
2
votes
1answer
33 views

WIndows Driver to retrieve address of newly added RAM

If i add a new RAM ro my DIMM slot, how can I find the physical address of the same in the windows kernel
0
votes
2answers
445 views

Macro redefinition warnings

I am migrating a windows driver project from VS 2005 to VS 2012. Many macro redefinition warnings are generated on VS 2012 like - .... 1>C:\WINDDK\7600.16385.1\inc\api\sal.h(707): warning C4005: ...
0
votes
3answers
305 views

Strict standards-compliance with Visual C++

This question is not the same as either of these: Setting Visual C++ Studio/Express to strict ANSI mode Is there an equivalent to -pedantic for gcc when using Microsoft's Visual C++ compiler? ...
0
votes
1answer
106 views

SetupDiGetDriverInfoDetail returns ERROR_INSUFFICIENT_BUFFER

I used SetupDiGetDriverInfoDetail to retrive the details of the driver. I used the following code fragment for this. But each time I execute my exe I am getting ERROR_INSUFFICIENT_BUFFER. How to ...
0
votes
2answers
144 views

prepend the “\\?\” string to the path - DriverPackageUninstall

I used DriverPackageUninstall, to uninstall my driver. For this API I need to give "Inf Path" as the input. And I need to give this path as UNICODE string. To do this, I took the following statement ...
0
votes
1answer
112 views

Is it possible to use network sockets in a DDK project?

Since WinSock and other socket C libraries are not available in DDK project, what should I use then ? I need to communicate in TCP protocol.
0
votes
0answers
27 views

DeleteOemInfFiles code displays only the last installed oem file

I used this link as reference to delete the old oem inf files. And this is my code for your reference, in this code I get only the last installed oem file. but in my inf directory there are two inf ...
2
votes
1answer
205 views

Can DevCon notify when a driver is finished installing after a rescan?

I am trying to install a driver during a windows-setup project. The first step I do is to copy the INF file and preinstall the driver. SetupCopyOEMInf(infFile, null, 1, 0, null, 0, 0, null); This ...
1
vote
1answer
328 views

Write to physical memory address

Inside my kernel-mode driver is the following code: PHYSICAL_ADDRESS physAddr; PVOID pvk; unsigned int reg_addr; // physical address to write to unsigned int* reg_val; ...
0
votes
0answers
46 views

UpdateDriverForPlugAndPlayDevices for last connected device

I used UpdateDriverForPlugAndPlayDevices api to install the driver for a device. It updates the driver for all the connected devices,with matching harware id. I want to update the driver only for the ...
-1
votes
2answers
288 views

Developing a driver for several Windows versions (xp, win7, vista)

We are developing a DLL, which calls generic WinUsb functions from WinDDK. This DLL needs to work in 32-bit and 64-bit versions of Windows, including xp, vista, win7, and possibly win8. My question ...
1
vote
0answers
194 views

Windows: Disable / Enable USB Hub WITHOUT reboot

I would like to be able to programmatically disable or enable a USB hub in order to make the USB devices connected to it unavailable or available, respectively. I did some testing using device manager ...
1
vote
1answer
270 views

Windows Kernel-Level Critical Section

Is there a way (and if so, what is the preferred way) to enter a critical section within a kernel-mode driver on windows, so that the driver obtains a short exclusivity for processing system-wide?
0
votes
1answer
284 views

Pass macro to nmake

From my earlier post, I figured out why the command build /nmake "USER_C_FLAGS=/DMyVersion=3" doesn't associate the define MyVersion with value 3. MSDN says that - Compiling with /Dname= ...
4
votes
1answer
344 views

Passing preprocessor variable to nmake build environment

I am having issues with building driver using nmake on Win7 x64 build environment. I am defining a preprocessor variable and passing it over the command line using - build /nmake ...
2
votes
0answers
449 views

Windows Kernel Driver signing and service creation

Having a bit of trouble signing my kernel mode driver and creating a service for it. So, I've created a self-signed certificate using makecert: makecert -r -pe -n "CN=XXX" -ss "XXX" -sr ...
1
vote
1answer
437 views

Driver load/unload fails if WinDbg attached with breakpoint

I just started with driver development. For some experiments with loading, unloading and debugging I have written the following simple driver: #include <ntddk.h> void ...
0
votes
1answer
86 views

how would i go about emulating mouse devices correctly?

I have a device simulation framework vbscript file I use to create emulated usb mouse devices but I have a problem: how can I pass x,y for a specific usb mouse device without ending the script before ...
1
vote
1answer
660 views

DbgPrint from WDK sample

I need to call DbgPrint or KdPrint function from WDK sample src\print\monitors\localmon Please help with instructions I've just added #include <ntddk.h> in localmon.c file and ...
0
votes
0answers
191 views

fwrite understanding

I am writing a driver and using fwrite for logging data to a file. I have a logger class which uses fwrite. Now i am passing the pointer and size but the data written into the file seems to be 161 ...
0
votes
0answers
188 views

Can I build standard DLL (not a driver) with Windows DDK?

Is it OK to compile a standard DLL with Windows DDK? My main goal is to link against msvcrt.dll; I know there are methods to link msvcrt.obj from DDK but otherwise compile with Visual Studio, but I ...
0
votes
2answers
365 views

mingw32 gives error when I include ddk/winddk.h

I'm new to Win environment, trying to write code which use win kernel API but on Ubuntu 10.04 ... using mingw32 (more specifically, i586-mingw32msvc) My code: #include<ddk/winddk.h> int main() ...
0
votes
1answer
30 views

How can i do rescan to hardisk using DDK ?

Is it possible to do rescan to some device using the ddk ?
2
votes
1answer
121 views

WinXPe NDIS 5.1 Device Driver IPv6

Writing WinXPe NDIS 5.1 device driver. Started with Intel E100 driver source from DDK and adapting to Altera triple-speed ethernet core. Receive packet through scatter gather DMA working well, can see ...
1
vote
3answers
175 views

Statically linking multiple libraries with WinDDK

I am using the DDK to build a project. Several of the build targets generate small internal libraries -- for simplicity, let's call them LibA.lib, LibB.lib, and LibC.lib. But the code for LibA ...
1
vote
2answers
436 views

What's the difference between a free build and a checked build?

I just installed the Windows Driver Kit for XP - Windows 7 and this may come as a silly question, but what is the difference between a "free build" and a "checked build"? PS: I'm not a driver ...
0
votes
2answers
297 views

running custom WIN kernel driver

first time building driver, i've built this driver and i got .sys and other files but i can't manage to run it, i register it with driver loader or sc.exe and i see it in registry but upon sc start ...
2
votes
2answers
3k views

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 I found by Google is: ...

1 2 3