cheat-engine/DBKKernel/DBK64.inf
Dark Byte d2dc1a6235 Now using visual studio 2017 to compile the driver
split up ultimap2 from dbk (in case signing dbk fails ultimap will keep working)
fixed the processwatcher bsod'ing you if you have multiple CE's open
fixed the ss segment limit in dbvm offload (not that it was used)
2018-04-13 00:25:53 +02:00

79 lines
2.1 KiB
INI

;
; DBK64.inf
;
[Version]
Signature="$WINDOWS NT$"
Class=System
ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
Provider=%ManufacturerName%
CatalogFile=DBK64.cat
DriverVer= ; TODO: set DriverVer in stampinf property pages
[DestinationDirs]
DefaultDestDir = 12
DBK64_Device_CoInstaller_CopyFiles = 11
; ================= Class section =====================
[SourceDisksNames]
1 = %DiskName%,,,""
[SourceDisksFiles]
DBK64.sys = 1,,
WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll=1 ; make sure the number matches with SourceDisksNames
;*****************************************
; Install Section
;*****************************************
[Manufacturer]
%ManufacturerName%=Standard,NT$ARCH$
[Standard.NT$ARCH$]
%DBK64.DeviceDesc%=DBK64_Device, Root\DBK64 ; TODO: edit hw-id
[DBK64_Device.NT]
CopyFiles=Drivers_Dir
[Drivers_Dir]
DBK64.sys
;-------------- Service installation
[DBK64_Device.NT.Services]
AddService = DBK64,%SPSVCINST_ASSOCSERVICE%, DBK64_Service_Inst
; -------------- DBK64 driver install sections
[DBK64_Service_Inst]
DisplayName = %DBK64.SVCDESC%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\DBK64.sys
;
;--- DBK64_Device Coinstaller installation ------
;
[DBK64_Device.NT.CoInstallers]
AddReg=DBK64_Device_CoInstaller_AddReg
CopyFiles=DBK64_Device_CoInstaller_CopyFiles
[DBK64_Device_CoInstaller_AddReg]
HKR,,CoInstallers32,0x00010000, "WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll,WdfCoInstaller"
[DBK64_Device_CoInstaller_CopyFiles]
WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll
[DBK64_Device.NT.Wdf]
KmdfService = DBK64, DBK64_wdfsect
[DBK64_wdfsect]
KmdfLibraryVersion = $KMDFVERSION$
[Strings]
SPSVCINST_ASSOCSERVICE= 0x00000002
ManufacturerName="Cheat Engine" ;TODO: Replace with your manufacturer name
ClassName="System" ; TODO: edit ClassName
DiskName = "DBK64 Installation Disk"
DBK64.DeviceDesc = "DBK64 Device"
DBK64.SVCDESC = "DBK64 Service"