wdk
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.However, c[详细]
2023-03-13 05:17 分类:问答How to access user mode memory?
I\'m trying to read the PEB of notepad.exe Currently I\'m trying to access the PEB by registering a ProcessCreation callback and then waiting until notepad.exe is created. When notepad is created I us[详细]
2023-03-12 19:17 分类:问答Driver Bulid error for 64bit os on Vistual Studio 2005
i am using Visual studio 2005 with WDK 7600.16385.1.i am compiling User mode Printer driver it will successfully开发者_JS百科 build when i select \"Win32\" for platform but when i build this driver fo[详细]
2023-03-08 06:47 分类:问答virtual joystick driver (VJoyD) and Direct Input
I have couple of questions: What is exactly VJoyD used for? Based on my reading win WDK (Windows Driver Kit) it provides joystick services in Windows (http://msdn.microsoft.com/en-us/library/ff54225[详细]
2023-03-08 04:39 分类:问答What is a Windows Kernel Driver?
What is开发者_如何学Python Windows Kernel Driver written with the WDK? What is different from normal app or service?Kernel drivers are programs written against Windows NT\'s native API (rather than t[详细]
2023-03-06 12:35 分类:问答Is wchar_t Supported in C++ WDK STL? I get Unresolved External Symbol's :(
I\'m compiling a trivial C++ file Temp.cpp: #include <string> int main() { std::wstring s; } With the command line:[详细]
2023-03-05 20:34 分类:问答Installing Filter Drivers To An Existing Device
I am learning how to write a filter driver and is trying to install one on top an existing HID driver (mouse or keyboard) for practising.From what I understand, I should at least ad开发者_StackOverflo[详细]
2023-02-28 21:56 分类:问答Is there any good good resource on how to write a ndis filter with windows develop kit?
Although wdk ships an exampe with it,it doesn\'t have any detail documents on how it works. Is there any resour开发者_开发知识库ce that fully explains how it works?It does very much contain all that[详细]
2023-02-28 15:12 分类:问答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[详细]
2023-02-28 13:50 分类:问答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[详细]
2023-02-27 03:16 分类:问答