-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWtWacomSmartpadDmfU.inx
101 lines (80 loc) · 5.65 KB
/
WtWacomSmartpadDmfU.inx
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
;/*++
;
;Copyright (c) Microsoft Corporation All rights Reserved
;
;Module Name:
;
; WtWacomSmartpadDmfU.inf
;
;Abstract:
; INF file for installing HID minidriver (UMDF 2 version)
;
;Installation Notes:
; Using Devcon: Type "devcon install WtWacomSmartpadDmfU.inf root\WtWacomSmartpadDmfU" to install
;
;--*/
[Version]
Signature="$WINDOWS NT$"
Class=Sample
ClassGuid={78A1C341-4539-11d3-B88D-00C04FAD5171}
Provider=%ProviderString%
DriverVer=10/01/2002,6.0.5058.0
CatalogFile=wudf.cat
; ================= Class section =====================
[ClassInstall32]
Addreg=SampleClassReg
[SampleClassReg]
HKR,,,0,%ClassName%
HKR,,Icon,,-5
; ================= Device section =====================
[Manufacturer]
%ManufacturerString%=Wt, NT$ARCH$.6.3
[Wt.NT$ARCH$.6.3]
%DeviceDesc%=WtWacomSmartpadDmfU, root\WtWacomSmartpadDmfU
[WtWacomSmartpadDmfU.NT]
CopyFiles=UMDriverCopy
[WtWacomSmartpadDmfU.NT.hw]
AddReg=WtWacomSmartpadDmfU_AddReg
[WtWacomSmartpadDmfU.NT.Services]
AddService=WUDFRd,0x000001f8,WUDFRD_ServiceInstall
AddService=mshidumdf, 0x000001fa, mshidumdf.AddService ;flag 0x2 sets this as the service for the device
[WtWacomSmartpadDmfU_AddReg]
HKR,,"LowerFilters",0x00010008,"WUDFRd" ; FLG_ADDREG_TYPE_MULTI_SZ | FLG_ADDREG_APPEND
[mshidumdf.AddService]
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\mshidumdf.sys
[WUDFRD_ServiceInstall]
DisplayName = %WudfRdDisplayName%
ServiceType = 1
StartType = 3
ErrorControl = 1
ServiceBinary = %12%\WUDFRd.sys
[WtWacomSmartpadDmfU.NT.Wdf]
UmdfService="WtWacomSmartpadDmfU", WtWacomSmartpadDmfU_Install
UmdfServiceOrder=WtWacomSmartpadDmfU
UmdfKernelModeClientPolicy=AllowKernelModeClients
UmdfFileObjectPolicy=AllowNullAndUnknownFileObjects
UmdfMethodNeitherAction=Copy
UmdfFsContextUsePolicy=CanUseFsContext2
[WtWacomSmartpadDmfU_Install]
UmdfLibraryVersion=$UMDFVERSION$
ServiceBinary="%12%\UMDF\WtWacomSmartpadDmfU.dll"
; ================= copy files =====================
[UMDriverCopy]
WtWacomSmartpadDmfU.dll,,,0x00004000 ; COPYFLG_IN_USE_RENAME
[SourceDisksNames]
1=%Disk_Description%,,,
[SourceDisksFiles]
WtWacomSmartpadDmfU.dll=1
[DestinationDirs]
UMDriverCopy=12,UMDF ; copy to drivers\umdf
;---------------------------------------------------------------;
[Strings]
ProviderString ="Wt"
ManufacturerString ="Vassilis Virvilis"
ClassName ="Wacom Smartpad"
Disk_Description ="Wacom Smartpad HID minidriver (DMF UMDF version) Installation Disk"
DeviceDesc ="Wacom Smartpad HID minidriver (DMF UMDF version) Device"
WudfRdDisplayName ="Wacom Smartpad Windows Driver Foundation - User-mode Driver Framework Reflector"