📄 kio.inf
字号:
;; KIO.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 Win2K DDK documentation contains an excellent INF reference.
;--------- Version Section ---------------------------------------------------
[Version]
Signature="$Windows 95$"
Provider=%ProviderName%
; If device fits one of the standard classes, use the name and GUID here,
; otherwise create your own device class and GUID as this example shows.
Class=KRX
ClassGUID={ff646f80-8def-11d2-9449-00105a075f6b}
DriverVer=08/07/2005,5.00.2072
;--------- SourceDiskNames and SourceDiskFiles Section -----------------------
; These sections identify source disks and files for installation. They are
; shown here as an example, but commented out.
[SourceDisksNames]
1 = "Install Disk",Disk1,,
[SourceDisksFiles]
KIO.sys = 1,,
;--------- ClassInstall/ClassInstall32 Section -------------------------------
; Not necessary if using a standard class
; 9X Style
[ClassInstall]
Addreg=Class_AddReg
; NT Style
[ClassInstall32]
Addreg=Class_AddReg
[Class_AddReg]
HKR,,,,%DeviceClassName%
HKR,,Icon,,"-5"
;--------- DestinationDirs Section -------------------------------------------
[DestinationDirs]
KIO_Files_Driver = 10,System32\Drivers
;--------- Manufacturer and Models Sections ----------------------------------
[Manufacturer]
%MfgName%=Mfg0
[Mfg0]
%DeviceDesc%=KIO_DDI, *KIO
;---------- DDInstall Sections -----------------------------------------------
; --------- Windows 9X -----------------
; Experimentation has shown that DDInstall root names greater than 19 characters
; cause problems in Windows 98
[KIO_DDI]
CopyFiles=KIO_Files_Driver
AddReg=KIO_9X_AddReg
LogConfig=KIO_Config
[KIO_9X_AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,KIO.sys
HKR, "Parameters", "BreakOnEntry", 0x00010001, 0
; --------- Windows NT -----------------
[KIO_DDI.NT]
CopyFiles=KIO_Files_Driver
AddReg=KIO_NT_AddReg
LogConfig=KIO_Config
[KIO_DDI.NT.Services]
Addservice = KIO, 0x00000002, KIO_AddService
[KIO_AddService]
DisplayName = %SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %10%\System32\Drivers\KIO.sys
[KIO_NT_AddReg]
HKLM, "System\CurrentControlSet\Services\KIO\Parameters",\
"BreakOnEntry", 0x00010001, 0
; ------ Logical Config (common) -------
[KIO_Config]
; This is the logical configuration for the device. If the device has no
; hardware resources, you can remove this section, and remove the reference
; to it in section [KIO_Device]
;
ConfigPriority=HARDRECONFIG
; The allowed values for ConfigPriority are:
; HARDWIRED Cannot be reset in any way
; DESIRED Soft Configurable most optimal
; NORMAL Soft Configured medium optimal
; SUBOPTIMAL Soft Configured least optimal
; DISABLED Hardware disabled
; RESTART Requires Windows restart to affect
; REBOOT Requires system reboot to affect
; POWEROFF Requires power cycle to affect
; HARDRECONFIG Requires Jumper setting
;
IOConfig=10@300-310%3ff(3ff::) ; IoPortRange0;
;; TODO: You must replace START and END in the line above with the correct I/O addresses (hex).
;; If the device decodes only 10 bits of I/O, replace ffff with 3ff.
IRQConfig=3,4,5,6,7,10,11,12,14,15
;; TODO: You must replace IRQNUM in the line above with the correct IRQ for your device
; --------- Files (common) -------------
[KIO_Files_Driver]
KIO.sys
;--------- Strings Section ---------------------------------------------------
[Strings]
ProviderName="科日新控电子技术有限公司"
MfgName="科日新控电子技术有限公司"
DeviceDesc="科日新脉冲控制卡K880"
DeviceClassName="科日新ISA卡"
SvcDesc="KRXGK"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -