forked from cheat-engine/cheat-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DBK32.inf
79 lines (61 loc) · 2.06 KB
/
DBK32.inf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;
; DBK32.inf
;
[Version]
Signature="$WINDOWS NT$"
Class=System
ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
Provider=%ManufacturerName%
CatalogFile=DBK32.cat
DriverVer= ; TODO: set DriverVer in stampinf property pages
[DestinationDirs]
DefaultDestDir = 12
DBK32_Device_CoInstaller_CopyFiles = 11
; ================= Class section =====================
[SourceDisksNames]
1 = %DiskName%,,,""
[SourceDisksFiles]
DBK32.sys = 1,,
WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll=1 ; make sure the number matches with SourceDisksNames
;*****************************************
; Install Section
;*****************************************
[Manufacturer]
%ManufacturerName%=Standard,NT$ARCH$
[Standard.NT$ARCH$]
%DBK32.DeviceDesc%=DBK32_Device, Root\DBK32 ; TODO: edit hw-id
[DBK32_Device.NT]
CopyFiles=Drivers_Dir
[Drivers_Dir]
DBK32.sys
;-------------- Service installation
[DBK32_Device.NT.Services]
AddService = DBK32,%SPSVCINST_ASSOCSERVICE%, DBK32_Service_Inst
; -------------- DBK32 driver install sections
[DBK32_Service_Inst]
DisplayName = %DBK32.SVCDESC%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\DBK32.sys
;
;--- DBK32_Device Coinstaller installation ------
;
[DBK32_Device.NT.CoInstallers]
AddReg=DBK32_Device_CoInstaller_AddReg
CopyFiles=DBK32_Device_CoInstaller_CopyFiles
[DBK32_Device_CoInstaller_AddReg]
HKR,,CoInstallers32,0x00010000, "WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll,WdfCoInstaller"
[DBK32_Device_CoInstaller_CopyFiles]
WdfCoInstaller$KMDFCOINSTALLERVERSION$.dll
[DBK32_Device.NT.Wdf]
KmdfService = DBK32, DBK32_wdfsect
[DBK32_wdfsect]
KmdfLibraryVersion = $KMDFVERSION$
[Strings]
SPSVCINST_ASSOCSERVICE= 0x00000002
ManufacturerName="Cheat Engine" ;TODO: Replace with your manufacturer name
ClassName="System" ; TODO: edit ClassName
DiskName = "DBK32 Installation Disk"
DBK32.DeviceDesc = "DBK32 Device"
DBK32.SVCDESC = "DBK32 Service"