summaryrefslogtreecommitdiff
path: root/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.inx
blob: 2a8dffc1dfe650231cab5b49094257f498404283 (plain)
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
;/*++
;
;Copyright (c) Microsoft Corporation.  All rights reserved.
;
;Module Name:
;    SingleComponentSingleStateUm.INF
;
;Abstract:
;    INF file for installing the SingleComponentSingleStateUm Driver
;
;Installation Notes:
;    Using Devcon: Type "devcon install SingleComponentSingleStateUm.inf root\SingleComponentSingleState" to install
;
;Important:
;    This INF depends on WUDFRD.inf which is available starting Windows 11
;
;--*/

[Version]
Signature="$WINDOWS NT$"
Class=Sample
ClassGuid={78A1C341-4539-11d3-B88D-00C04FAD5171}
Provider=%ProviderString%
DriverVer=03/20/2003,5.0.3788.0
CatalogFile=wudf.cat
PnpLockdown=1

[DestinationDirs]
DefaultDestDir = 13

[SourceDisksNames]
1 = %DiskId1%,,,""

[SourceDisksFiles]
SingleComponentSingleStateUm.dll = 1,,

; ================= Class section =====================

[ClassInstall32]
Addreg=SampleClassReg

[SampleClassReg]
HKR,,,0,%ClassName%
HKR,,Icon,,-5


;*****************************************
; SCSS  Install Section
;*****************************************

[Manufacturer]
%StdMfg%=Standard,NT$ARCH$.10.0...22000

[Standard.NT$ARCH$.10.0...22000]
%SCSS.DeviceDesc%=SCSS_Device, root\SingleComponentSingleState

;---------------- copy files

[SCSS_Device.NT]
CopyFiles=UMDriverCopy
Include=WUDFRD.inf
Needs=WUDFRD.NT

[SCSS_Device.NT.HW]
Include=WUDFRD.inf
Needs=WUDFRD.NT.HW

[UMDriverCopy]
SingleComponentSingleStateUm.dll

;-------------- Service installation
[SCSS_Device.NT.Services]
Include=WUDFRD.inf
Needs=WUDFRD.NT.Services

;-------------- WDF specific section -------------
[SCSS_Device.NT.Wdf]
UmdfService=SingleComponentSingleStateUm, SCSS_Install
UmdfServiceOrder=SingleComponentSingleStateUm

[SCSS_Install]
UmdfLibraryVersion=$UMDFVERSION$
ServiceBinary=%13%\SingleComponentSingleStateUm.dll

[Strings]
ProviderString = "TODO-Set-Provider"
StdMfg = "(Standard system devices)"
DiskId1 = "WDF Sample Single Component Single State Device Installation Disk #1"
SCSS.DeviceDesc = "UMDF 2.0 Single Component Single State Device"
ClassName = "Sample Device"