A set of development tools that allow for the creation of drivers for certain operating systems.
0
votes
1answer
43 views
How to compile native applications using DDK?
I tried to compile native applications using DDK, but I got "don't know how to make '\nt.lib'" error. How to fix this?
0
votes
0answers
61 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 ...
0
votes
1answer
103 views
Target Architecture not defined error
I am developing a filter driver and encountering following error:
fatal error C1189: #error : "No target architecture defined"
1>Compiling...
1>miniport.c
...
0
votes
1answer
49 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 ...
0
votes
1answer
42 views
WDK build environments versioning
Sorry if I am asking something obvious. I was trying to recompile usermode helper dll for a driver using Windows 7's WDK when I noticed that is distributed with different dll for each OS built using ...
0
votes
1answer
153 views
WskSocketConnect — possible memory corruption issue?
I'm trying to use the WinSock API from a driver to connect to another computer. The problem is that WskSocketConnect (and WskConnect if I go down that route) fail with STATUS_INVALID_ADDRESS. My code ...
0
votes
1answer
111 views
How to determine if a FILE_OBJECT represents a normal file or device?
The MSDN page on FILE_OBJECT says:
"Note The type of object (for example, a file, directory, or volume)
that a given file object represents cannot be determined by only
examining the ...
2
votes
2answers
247 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 ...
1
vote
0answers
50 views
How to create game controller property sheet?
I want create custom property sheet for joystick that i developed. Some relevant stuff about find in http://msdn.microsoft.com/en-us/library/windows/hardware/ff538689(v=vs.85).aspx. But this docs ...
0
votes
1answer
172 views
Windows Lower Filter Driver
Have some special USB drives whose Oxford Semi controllers are proclaiming themselves non-removable and I need to make them removable [which of course they are]. Oxford will not cooperate. Took ...
2
votes
2answers
281 views
Why am I getting Error Code 6 on StartService?
For my purposes, I need to write a kernel mode driver for Windows. Currently I am attempting to make it work under Windows 7 x64.
I created a simple project in Visual Studio 2012 with default code ...
0
votes
2answers
319 views
DDK sample passthru not loaded in win7
I am developing a driver based on ddk sample "passthru" and I have trouble loading this driver in win7(x86 or x64). I have tested my driver in winxp (x86 and x64), and it works pretty well, but when I ...
0
votes
0answers
29 views
Adding a new DDR to my DIMM socket (OS WInXP)
Adding a new DDR to my DIMM socket (OS WInXP). Need to write a kernel module to allocate memory, read, write from user space to kernel space. Which DDK function do I use?
0
votes
1answer
103 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
1answer
111 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 ...
3
votes
1answer
406 views
Windows File System Filter Driver
I am trying to create a small file system filter driver for testing/demonstrating how to track the impact that filter drivers have on I/O performance using ETW in Windows Server 2008 R2. I've ...
0
votes
1answer
41 views
DebugTrace in Microsoft driver examples
Hi I was wondering if anyone knows what the function Debugtrace does in the driver examples given with WDDK. I could not find the function online nor in the source code, thanks.
DebugTrace( ...
0
votes
1answer
1k views
Deleting .inf and .pnf Files
I manually install my driver using an .inf file. Until now, I deleted the oem.inf and .pnf files from the inf folder to uninstall. Whenever I install a new driver I delete/uninstall the old inf and ...
-1
votes
2answers
286 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 ...
0
votes
0answers
54 views
Windows XP and W7 hang during installation of driver that worked in Windows 2000
I am trying to port a PCI driver developed using DDK that was flawlessly working in W2000 to work in WXP (and after that, in W7). The code is exactly the same but different environments to build the ...
0
votes
0answers
95 views
Identify the DDK Version from a compiled *.sys file
I need to identify the DDK of a compiled windows device driver *.sys file. I do not have the source code. Is there any way to do this?
The trouble is we are suspecting an older DDK to cause some ...
1
vote
1answer
433 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 ...
1
vote
2answers
173 views
DDK preprocessor directives
Does the DDK's build environments pass preprocessor defines to code to specify x86/ia64/x64 for the code to use with #ifdef, etc.?
0
votes
2answers
363 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 ?
1
vote
3answers
173 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 ...
2
votes
1answer
668 views
How to start writing DDK code ?
I want to write some simple code using DDK - but i don't know even how to compile some demo code that i download.
How to compile this thing ?
Is there some simple editor / IDE that i can use ?
Is ...
2
votes
1answer
207 views
How to interface with the NT mount manager to assign a driveletter?
I'm attempting to replace some legacy DefineDosDevice userspace code (which doesn't work on Vista with Administrator users due to the fact that the elevated and normal session are represented by ...
0
votes
1answer
199 views
Loading Driver Using OSR Driver Loader Error
I have trouble loading my driver using OSR driver loader. I point the path to my driver, register service successfuly, but when I click start service I receive error message "The system cannot find ...
0
votes
1answer
103 views
PNDIS_GENERIC_OBJECT error C2061
I get compiler errors after declaring PNDIS_GENERIC_OBJECT variable. Any suggestion what should I do?
#include <ntddk.h>
#include <ndis.h>
PNDIS_GENERIC_OBJECT gNdisGenericObj;
VOID ...
3
votes
1answer
145 views
Windows driver C1083 error
I created simple "Hello world" windows driver.
hello.c
#include <ntddk.h>
NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
{
DbgPrint("Hello, World\n");
...
1
vote
1answer
372 views
WDK compiled driver will not install on device in Win 7 x64
I am completely new to both programing and driver programing.
I am trying to get a WDK sample driver to load, specifically the KBFILTR. I am able to compile it in the win7 x64 free build ...
1
vote
1answer
1k 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: ...
2
votes
1answer
276 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 ...
5
votes
4answers
658 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 ...
0
votes
1answer
312 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 ...
2
votes
0answers
243 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 ...
0
votes
3answers
344 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
401 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 ...
4
votes
7answers
724 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 ...
1
vote
1answer
219 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 ...
2
votes
2answers
855 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?
0
votes
3answers
418 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 ...
5
votes
3answers
2k 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 ...
0
votes
1answer
288 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
183 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
263 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
3answers
1k 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
40 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 ...