readme.txt

来自「撰写windows驱动须知(Essentials Of Building Win」· 文本 代码 · 共 41 行

TXT
41
字号
This is a demonstration of a driver project.  The project has 3 components:  A "main" driver file(eg, contains DriverEntry), which will result in a .sys file; a second piece of the driver,which will result in a .lib file (to be linked into the main driver); and a user-space program,which talks to the driver. These files are included:  .\ReadMe.txt -- This file.  .\dirs -- Used in build.  .\DemoDriver.dsw -- Visual Studio 6 workspace file.  .\DemoDriver.dsp -- Visual Studio 6 project file.  .\DriverPart1\DriverMain.cpp -- The main driver file.  .\DriverPart1\makefile -- Used in build.                                           .\DriverPart1\sources -- Used in build.                                           .\DriverPart2\DriverPart2.cpp -- The second piece of the driver.  .\DriverPart2\makefile -- Used in build.                                           .\DriverPart2\sources -- Used in build.                                           .\inc\DemoDriver.h -- Header file.  .\TalkDriver\TalkDriver.c -- Program to talk to driver.  .\TalkDriver\makefile -- Used in build.                                           .\TalkDriver\sources -- Used in build.                                         Installing the driver --  Get InstallDriver from http://home.mindspring.com/~antognini, under "legacy driver."  Let's  assume InstallDriver is in the same directory as the driver file.  Do (you must have  administrator privileges):    InstallDriver DemoDriver loadTo invoke the driver, do    TalkDriver testUninstalling the driver --  In a command window, do    InstallDriver DemoDriver unload

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?