实例介绍
【实例简介】
Windows驱动开发技术详解 源代码
【实例截图】
【核心代码】
4744302543444412655.rar
└── Windows驱动开发技术详解(源代码)
├── Windows驱动开发技术详解
│ ├── ch01.pdf
│ ├── ch17.pdf
│ ├── chapter01
│ │ ├── NT_Driver
│ │ │ ├── 1
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── makefile
│ │ │ │ ├── Sources
│ │ │ │ └── 说明.txt
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ ├── Driver.h
│ │ │ └── 说明.txt
│ │ └── WDM_Driver
│ │ ├── 1
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── makefile
│ │ │ ├── Sources
│ │ │ └── 说明.txt
│ │ └── 2
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ ├── chapter03
│ │ └── LoadNTDriver
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── Driver.cpp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver.dsp
│ │ └── Test
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter04
│ │ ├── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ ├── Driver.h
│ │ │ └── 说明.txt
│ │ └── WDM_Driver
│ │ └── 2
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ └── 说明.txt
│ ├── chapter05
│ │ ├── FileTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── LinkList
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── Lookaside
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── new
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── RegTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── RtlTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── SEHTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ └── StringTest
│ │ └── NT_Driver
│ │ └── 2
│ │ ├── Driver.cpp
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ └── Driver.h
│ ├── chapter06
│ ├── chapter07
│ │ ├── DispatchTest
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IOCTL_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── MDL_Test
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Neither_Device_Test
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── ReadTest
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── SimulateFile
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ └── Driver.h
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter09
│ │ ├── AsyncOperate1
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ ├── AsyncOperate2
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ └── test.dat
│ │ │ ├── main.cpp
│ │ │ ├── test.dat
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ ├── CancelIRPTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── PendingIRPTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── SpecialStartIOTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── StartIOTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── SyncOperate
│ │ └── Test
│ │ ├── Debug
│ │ ├── main.cpp
│ │ ├── Test.dsp
│ │ └── Test.dsw
│ ├── chapter10
│ │ ├── DPCTimer_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IoTimer_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IRPTimeout_Test
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Time_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Waiting_Test
│ │ ├── Debug
│ │ ├── MyDriver_Check
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── Driver.h
│ │ │ ├── Ioctls.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── Debug
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter11
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test5
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test6
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test7
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ └── Test8
│ │ ├── Debug
│ │ ├── DriverDevA
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevA.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── DriverDevB
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevB.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── ConsoleTest.dsp
│ │ ├── Debug
│ │ └── main.cpp
│ ├── chapter12
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ └── Test5
│ │ ├── Debug
│ │ ├── DriverDevA
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevA.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── DriverDevB
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevB.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── ConsoleTest.dsp
│ │ ├── Debug
│ │ └── main.cpp
│ ├── chapter13
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test3
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter14
│ │ └── Test1
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter15
│ │ ├── Test1
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── ConsoleTest.dsw
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── ConsoleTest.dsw
│ │ │ ├── Debug
│ │ │ │ ├── WinIo.dll
│ │ │ │ └── WinIo.sys
│ │ │ ├── main.cpp
│ │ │ └── WinIoLib
│ │ │ ├── WinIo.dll
│ │ │ ├── WinIo.h
│ │ │ ├── WinIo.lib
│ │ │ ├── WinIo.sys
│ │ │ └── WINIO.VXD
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test5
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ ├── function.sbr
│ │ │ │ ├── main.sbr
│ │ │ │ └── Test.bsc
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test6
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ ├── function.sbr
│ │ │ │ ├── main.sbr
│ │ │ │ └── Test.bsc
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test7
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test8
│ │ ├── Debug
│ │ ├── MyDriver_Check
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── Driver.h
│ │ │ ├── Ioctls.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter16
│ │ ├── Test1
│ │ │ └── NT_Driver
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── PCI00000.bin
│ │ │ ├── PCI00010.bin
│ │ │ ├── PCI00020.bin
│ │ │ ├── PCI00021.bin
│ │ │ ├── PCI001B0.bin
│ │ │ ├── PCI001C0.bin
│ │ │ ├── PCI001D0.bin
│ │ │ ├── PCI001D1.bin
│ │ │ ├── PCI001D2.bin
│ │ │ ├── PCI001D3.bin
│ │ │ ├── PCI001D7.bin
│ │ │ ├── PCI001E0.bin
│ │ │ ├── PCI001F0.bin
│ │ │ ├── PCI001F1.bin
│ │ │ ├── PCI001F2.bin
│ │ │ ├── PCI001F3.bin
│ │ │ ├── PCI02000.bin
│ │ │ └── Test.dsp
│ │ ├── Test2
│ │ │ └── NT_Driver
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── PCI00000.bin
│ │ │ ├── PCI00010.bin
│ │ │ ├── PCI00020.bin
│ │ │ ├── PCI00021.bin
│ │ │ ├── PCI001B0.bin
│ │ │ ├── PCI001C0.bin
│ │ │ ├── PCI001D0.bin
│ │ │ ├── PCI001D1.bin
│ │ │ ├── PCI001D2.bin
│ │ │ ├── PCI001D3.bin
│ │ │ ├── PCI001D7.bin
│ │ │ ├── PCI001E0.bin
│ │ │ ├── PCI001F0.bin
│ │ │ ├── PCI001F1.bin
│ │ │ ├── PCI001F2.bin
│ │ │ ├── PCI001F3.bin
│ │ │ ├── PCI02000.bin
│ │ │ └── Test.dsp
│ │ ├── Test3
│ │ │ └── WDM_Driver
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test5
│ │ └── WDM_Driver
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter17
│ │ ├── exe
│ │ │ ├── makefile
│ │ │ ├── rwbulk.c
│ │ │ ├── rwbulk.rc
│ │ │ └── sources
│ │ └── sys
│ │ ├── bulkdev.c
│ │ ├── bulkdev.h
│ │ ├── bulkpnp.c
│ │ ├── bulkpnp.h
│ │ ├── bulkpwr.c
│ │ ├── bulkpwr.h
│ │ ├── bulkrwr.c
│ │ ├── bulkrwr.h
│ │ ├── bulkusb.c
│ │ ├── bulkusb.h
│ │ ├── bulkusb.inf
│ │ ├── bulkusb.mof
│ │ ├── bulkusb.rc
│ │ ├── bulkusr.h
│ │ ├── bulkwmi.c
│ │ ├── bulkwmi.h
│ │ ├── makefile
│ │ ├── makefile.inc
│ │ └── sources
│ ├── chapter18
│ │ ├── SDIO_Driver
│ │ │ ├── buildchk_wnet_x86.log
│ │ │ ├── buildchk_wnet_x86.wrn
│ │ │ ├── buildchk_wxp_x86.log
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── makefile
│ │ │ ├── objchk_wxp_x86
│ │ │ │ └── i386
│ │ │ │ └── _objects.mac
│ │ │ ├── SdioDev.h
│ │ │ ├── Sdiomain.h
│ │ │ ├── Sdiousb.cpp
│ │ │ └── Sources
│ │ ├── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ └── 说明.txt
│ ├── chapter19
│ │ └── Virtual_COM
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ ├── chapter20
│ │ └── testcap
│ │ ├── buildchk_wxp_x86.log
│ │ ├── capdebug.h
│ │ ├── capirq.c
│ │ ├── capmain.c
│ │ ├── capmain.h
│ │ ├── capprop.c
│ │ ├── capprop.h
│ │ ├── capstrm.h
│ │ ├── capvideo.c
│ │ ├── capxfer.c
│ │ ├── capxfer.h
│ │ ├── ddraw.c
│ │ ├── makefile
│ │ ├── mediums.h
│ │ ├── objchk_wxp_x86
│ │ │ ├── i386
│ │ │ │ └── testcap.res
│ │ │ └── _objects.mac
│ │ ├── sources
│ │ ├── testcap.htm
│ │ ├── testcap.inf
│ │ └── testcap.rc
│ ├── chapter22
│ │ ├── FileFilter
│ │ │ ├── DriverEntry.cpp
│ │ │ ├── Driver.h
│ │ │ ├── filter.inf
│ │ │ ├── MyFilter.dsp
│ │ │ ├── MyFilter.dsw
│ │ │ ├── stddcls.cpp
│ │ │ └── stddcls.h
│ │ └── KeyFilter
│ │ ├── buildchk_wxp_x86.log
│ │ ├── ctrl2cap.c
│ │ ├── CTRL2CAP.H
│ │ ├── ctrl2cap.rc
│ │ ├── MAKEFILE
│ │ ├── objchk_wxp_x86
│ │ │ ├── i386
│ │ │ │ └── ctrl2cap.res
│ │ │ └── _objects.mac
│ │ └── SOURCES
│ └── chapter23
│ ├── ErrorTest
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ └── ErrorTest2
│ ├── DriverDev.dsp
│ ├── DriverDev.dsw
│ ├── HelloWDM.cpp
│ ├── HelloWDM.h
│ ├── HelloWDM.inf
│ ├── MyDriver_Check
│ └── 说明.txt
386 directories, 614 files
Windows驱动开发技术详解 源代码
【实例截图】
【核心代码】
4744302543444412655.rar
└── Windows驱动开发技术详解(源代码)
├── Windows驱动开发技术详解
│ ├── ch01.pdf
│ ├── ch17.pdf
│ ├── chapter01
│ │ ├── NT_Driver
│ │ │ ├── 1
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── makefile
│ │ │ │ ├── Sources
│ │ │ │ └── 说明.txt
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ ├── Driver.h
│ │ │ └── 说明.txt
│ │ └── WDM_Driver
│ │ ├── 1
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── makefile
│ │ │ ├── Sources
│ │ │ └── 说明.txt
│ │ └── 2
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ ├── chapter03
│ │ └── LoadNTDriver
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── Driver.cpp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver.dsp
│ │ └── Test
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter04
│ │ ├── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ ├── Driver.h
│ │ │ └── 说明.txt
│ │ └── WDM_Driver
│ │ └── 2
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ └── 说明.txt
│ ├── chapter05
│ │ ├── FileTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── LinkList
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── Lookaside
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── new
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── RegTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── RtlTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ ├── SEHTest
│ │ │ └── NT_Driver
│ │ │ └── 2
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── DriverDev.dsw
│ │ │ └── Driver.h
│ │ └── StringTest
│ │ └── NT_Driver
│ │ └── 2
│ │ ├── Driver.cpp
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ └── Driver.h
│ ├── chapter06
│ ├── chapter07
│ │ ├── DispatchTest
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IOCTL_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── MDL_Test
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Neither_Device_Test
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── ReadTest
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ └── Driver.h
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── SimulateFile
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ └── Driver.h
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter09
│ │ ├── AsyncOperate1
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ ├── AsyncOperate2
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ └── test.dat
│ │ │ ├── main.cpp
│ │ │ ├── test.dat
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ ├── CancelIRPTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── PendingIRPTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── SpecialStartIOTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── StartIOTest
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── SyncOperate
│ │ └── Test
│ │ ├── Debug
│ │ ├── main.cpp
│ │ ├── Test.dsp
│ │ └── Test.dsw
│ ├── chapter10
│ │ ├── DPCTimer_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IoTimer_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── IRPTimeout_Test
│ │ │ ├── Debug
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Time_Test
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Waiting_Test
│ │ ├── Debug
│ │ ├── MyDriver_Check
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── Driver.h
│ │ │ ├── Ioctls.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── Debug
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter11
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test5
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test6
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test7
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ └── Test8
│ │ ├── Debug
│ │ ├── DriverDevA
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevA.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── DriverDevB
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevB.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── ConsoleTest.dsp
│ │ ├── Debug
│ │ └── main.cpp
│ ├── chapter12
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDevA
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevA.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── DriverDevB
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDevB.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ └── Test5
│ │ ├── Debug
│ │ ├── DriverDevA
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevA.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── DriverDevB
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDevB.dsp
│ │ │ ├── Driver.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── ConsoleTest.dsp
│ │ ├── Debug
│ │ └── main.cpp
│ ├── chapter13
│ │ ├── Test1
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test2
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test3
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter14
│ │ └── Test1
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter15
│ │ ├── Test1
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── ConsoleTest.dsw
│ │ │ ├── Debug
│ │ │ └── main.cpp
│ │ ├── Test2
│ │ │ ├── ConsoleTest.dsp
│ │ │ ├── ConsoleTest.dsw
│ │ │ ├── Debug
│ │ │ │ ├── WinIo.dll
│ │ │ │ └── WinIo.sys
│ │ │ ├── main.cpp
│ │ │ └── WinIoLib
│ │ │ ├── WinIo.dll
│ │ │ ├── WinIo.h
│ │ │ ├── WinIo.lib
│ │ │ ├── WinIo.sys
│ │ │ └── WINIO.VXD
│ │ ├── Test3
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test5
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ ├── function.sbr
│ │ │ │ ├── main.sbr
│ │ │ │ └── Test.bsc
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test6
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ │ ├── function.sbr
│ │ │ │ ├── main.sbr
│ │ │ │ └── Test.bsc
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test7
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test8
│ │ ├── Debug
│ │ ├── MyDriver_Check
│ │ ├── NT_Driver
│ │ │ ├── Driver.cpp
│ │ │ ├── DriverDev.dsp
│ │ │ ├── Driver.h
│ │ │ ├── Ioctls.h
│ │ │ └── MyDriver_Check
│ │ ├── NT_Driver.dsw
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter16
│ │ ├── Test1
│ │ │ └── NT_Driver
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── PCI00000.bin
│ │ │ ├── PCI00010.bin
│ │ │ ├── PCI00020.bin
│ │ │ ├── PCI00021.bin
│ │ │ ├── PCI001B0.bin
│ │ │ ├── PCI001C0.bin
│ │ │ ├── PCI001D0.bin
│ │ │ ├── PCI001D1.bin
│ │ │ ├── PCI001D2.bin
│ │ │ ├── PCI001D3.bin
│ │ │ ├── PCI001D7.bin
│ │ │ ├── PCI001E0.bin
│ │ │ ├── PCI001F0.bin
│ │ │ ├── PCI001F1.bin
│ │ │ ├── PCI001F2.bin
│ │ │ ├── PCI001F3.bin
│ │ │ ├── PCI02000.bin
│ │ │ └── Test.dsp
│ │ ├── Test2
│ │ │ └── NT_Driver
│ │ │ ├── Debug
│ │ │ ├── MyDriver_Check
│ │ │ ├── NT_Driver
│ │ │ │ ├── Driver.cpp
│ │ │ │ ├── DriverDev.dsp
│ │ │ │ ├── Driver.h
│ │ │ │ ├── Ioctls.h
│ │ │ │ └── MyDriver_Check
│ │ │ ├── NT_Driver.dsw
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── PCI00000.bin
│ │ │ ├── PCI00010.bin
│ │ │ ├── PCI00020.bin
│ │ │ ├── PCI00021.bin
│ │ │ ├── PCI001B0.bin
│ │ │ ├── PCI001C0.bin
│ │ │ ├── PCI001D0.bin
│ │ │ ├── PCI001D1.bin
│ │ │ ├── PCI001D2.bin
│ │ │ ├── PCI001D3.bin
│ │ │ ├── PCI001D7.bin
│ │ │ ├── PCI001E0.bin
│ │ │ ├── PCI001F0.bin
│ │ │ ├── PCI001F1.bin
│ │ │ ├── PCI001F2.bin
│ │ │ ├── PCI001F3.bin
│ │ │ ├── PCI02000.bin
│ │ │ └── Test.dsp
│ │ ├── Test3
│ │ │ └── WDM_Driver
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ ├── Test4
│ │ │ ├── Debug
│ │ │ ├── DriverDev.dsw
│ │ │ ├── MyDriver
│ │ │ │ ├── guid.h
│ │ │ │ ├── HelloWDM.cpp
│ │ │ │ ├── HelloWDM.h
│ │ │ │ ├── HelloWDM.inf
│ │ │ │ ├── Ioctls.h
│ │ │ │ ├── MyDriver_Check
│ │ │ │ │ └── HelloWDM.sbr
│ │ │ │ └── MyDriver.dsp
│ │ │ ├── MyDriver_Check
│ │ │ └── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ └── Test.dsp
│ │ └── Test5
│ │ └── WDM_Driver
│ │ ├── Debug
│ │ ├── DriverDev.dsw
│ │ ├── MyDriver
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.cpp
│ │ │ ├── HelloWDM.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── MyDriver_Check
│ │ │ │ └── HelloWDM.sbr
│ │ │ └── MyDriver.dsp
│ │ ├── MyDriver_Check
│ │ └── Test
│ │ ├── Debug
│ │ ├── function.cpp
│ │ ├── function.h
│ │ ├── main.cpp
│ │ └── Test.dsp
│ ├── chapter17
│ │ ├── exe
│ │ │ ├── makefile
│ │ │ ├── rwbulk.c
│ │ │ ├── rwbulk.rc
│ │ │ └── sources
│ │ └── sys
│ │ ├── bulkdev.c
│ │ ├── bulkdev.h
│ │ ├── bulkpnp.c
│ │ ├── bulkpnp.h
│ │ ├── bulkpwr.c
│ │ ├── bulkpwr.h
│ │ ├── bulkrwr.c
│ │ ├── bulkrwr.h
│ │ ├── bulkusb.c
│ │ ├── bulkusb.h
│ │ ├── bulkusb.inf
│ │ ├── bulkusb.mof
│ │ ├── bulkusb.rc
│ │ ├── bulkusr.h
│ │ ├── bulkwmi.c
│ │ ├── bulkwmi.h
│ │ ├── makefile
│ │ ├── makefile.inc
│ │ └── sources
│ ├── chapter18
│ │ ├── SDIO_Driver
│ │ │ ├── buildchk_wnet_x86.log
│ │ │ ├── buildchk_wnet_x86.wrn
│ │ │ ├── buildchk_wxp_x86.log
│ │ │ ├── guid.h
│ │ │ ├── HelloWDM.inf
│ │ │ ├── Ioctls.h
│ │ │ ├── makefile
│ │ │ ├── objchk_wxp_x86
│ │ │ │ └── i386
│ │ │ │ └── _objects.mac
│ │ │ ├── SdioDev.h
│ │ │ ├── Sdiomain.h
│ │ │ ├── Sdiousb.cpp
│ │ │ └── Sources
│ │ ├── Test
│ │ │ ├── Debug
│ │ │ ├── function.cpp
│ │ │ ├── function.h
│ │ │ ├── main.cpp
│ │ │ ├── Test.dsp
│ │ │ └── Test.dsw
│ │ └── 说明.txt
│ ├── chapter19
│ │ └── Virtual_COM
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ ├── chapter20
│ │ └── testcap
│ │ ├── buildchk_wxp_x86.log
│ │ ├── capdebug.h
│ │ ├── capirq.c
│ │ ├── capmain.c
│ │ ├── capmain.h
│ │ ├── capprop.c
│ │ ├── capprop.h
│ │ ├── capstrm.h
│ │ ├── capvideo.c
│ │ ├── capxfer.c
│ │ ├── capxfer.h
│ │ ├── ddraw.c
│ │ ├── makefile
│ │ ├── mediums.h
│ │ ├── objchk_wxp_x86
│ │ │ ├── i386
│ │ │ │ └── testcap.res
│ │ │ └── _objects.mac
│ │ ├── sources
│ │ ├── testcap.htm
│ │ ├── testcap.inf
│ │ └── testcap.rc
│ ├── chapter22
│ │ ├── FileFilter
│ │ │ ├── DriverEntry.cpp
│ │ │ ├── Driver.h
│ │ │ ├── filter.inf
│ │ │ ├── MyFilter.dsp
│ │ │ ├── MyFilter.dsw
│ │ │ ├── stddcls.cpp
│ │ │ └── stddcls.h
│ │ └── KeyFilter
│ │ ├── buildchk_wxp_x86.log
│ │ ├── ctrl2cap.c
│ │ ├── CTRL2CAP.H
│ │ ├── ctrl2cap.rc
│ │ ├── MAKEFILE
│ │ ├── objchk_wxp_x86
│ │ │ ├── i386
│ │ │ │ └── ctrl2cap.res
│ │ │ └── _objects.mac
│ │ └── SOURCES
│ └── chapter23
│ ├── ErrorTest
│ │ ├── DriverDev.dsp
│ │ ├── DriverDev.dsw
│ │ ├── HelloWDM.cpp
│ │ ├── HelloWDM.h
│ │ ├── HelloWDM.inf
│ │ ├── MyDriver_Check
│ │ └── 说明.txt
│ └── ErrorTest2
│ ├── DriverDev.dsp
│ ├── DriverDev.dsw
│ ├── HelloWDM.cpp
│ ├── HelloWDM.h
│ ├── HelloWDM.inf
│ ├── MyDriver_Check
│ └── 说明.txt
386 directories, 614 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论