⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 charfilter.inf

📁 windows 2000/XP WDM设备驱动程序开发 附书光盘 武安河著
💻 INF
字号:
;; CharFilter.inf

;; *********  PLEASE READ ***********
;; The wizard cannot create exact INF files for all buses and device types.
;; You may have to make changes to this file in order to get your device to
;; install. In particular, hardware IDs and logical configurations require
;; intervention.
;;
;; The Windows DDK documentation contains an excellent INF reference.
;;
;;   TODO  Review the .inf file to install the WDM filter driver.
;;
;;
;;	TODO  Use the Co Installer DLL to install the WDM Filter.  
;;	IMPORTANT: See CharFilterDll.cpp for important Installation Notes.

[Version]
Signature="$Chicago$"
Provider=%ProviderName%
;; TODO: Select a Device Class for the Filter Driver
ClassGUID={4d36e97d-e325-11ce-bfc1-08002be10318}
Class=System
DriverVer=1/01/2002,1.00.00.0000

[DestinationDirs]
DefaultDestDir   = 10,System32\Drivers

;
; Driver information
;

[Manufacturer]
%MfgName%   = Mfg0

[Mfg0]
%DeviceDesc% = CharFilter_DDI, *CharFilter

;
; General installation section
;

[DefaultInstall]
CopyFiles=CharFilter.CopyFiles

[CharFilter_DDI.NT]
CopyFiles=CharFilter.CopyFiles

[CharFilter.CopyFiles]
CharFilter.sys

;
; Service Installation
;

;; TODO: Optionally install a WDM "function" driver 
[CharFilter_DDI.NT.Services]
AddService = %DeviceDesc%,,FilterInst

[FilterInst]
DisplayName    = %DeviceDesc%
ServiceType    = 1
StartType      = 3
ErrorControl   = 0
ServiceBinary  = %10%\System32\Drivers\CharFilter.sys
LoadOrderGroup = Extended Base 

;
; Localizable Strings
;

[Strings]
DeviceDesc = "CharFilter Filter"
ProviderName="CharFilter Company Name here"
MfgName="CharFilter Manufacturer Name here"
SvcDesc="CharFilter Filter"

⌨️ 快捷键说明

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