blob: 9ea732816ea9611400ebb1710ad446d707b38cdc (
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
|
/*++
;
;Copyright (c) Microsoft Corporation. All rights reserved.
;
;Module Name:
; SimpleDeviceOrientationSensor.INF
;
;Abstract:
; INF file for installing the Sensors 2.0 Simple Device Orientation Sensor Driver
;
;Installation Notes:
; Using Devcon: Type "devcon install SimpleDeviceOrientationSensor.inf umdf2\SDOSampleSensor" to install
;
;--*/
[Version]
Signature = "$WINDOWS NT$"
Class = Sensor
ClassGuid = {5175D334-C371-4806-B3BA-71FD53C9258D}
Provider = %ProviderName%
CatalogFile = SimpleDeviceOrientationSensor.cat
DriverVer = 08/14/2014,2.0.0.1
PnpLockdown = 1
[DestinationDirs]
;12 == Windows\System32\Drivers\UMDF
DefaultDestDir = 12,UMDF
[SourceDisksNames]
1 = %MediaDescription%,,,""
[SourceDisksFiles]
SimpleDeviceOrientationSensor.dll = 1,,
[Manufacturer]
%ManufacturerName% = SimpleDeviceOrientationSensor_Device, NT$ARCH$.10.0...22000
;*******************************
; Simple Device Orientation Sensor Install Section
;*******************************
[SimpleDeviceOrientationSensor_Device.NT$ARCH$.10.0...22000]
; DisplayName Section DeviceId
; ----------- ------- --------
%SimpleDeviceOrientationSensor_DevDesc% = SimpleDeviceOrientationSensor_Inst, umdf2\SDOSampleSensor
[SimpleDeviceOrientationSensor_Inst.NT]
Include=WUDFRD.inf
Needs=WUDFRD.NT
CopyFiles = SimpleDeviceOrientationSensorDriverCopy
[SimpleDeviceOrientationSensorDriverCopy]
SimpleDeviceOrientationSensor.dll
[SimpleDeviceOrientationSensor_Inst.NT.HW]
Include=WUDFRD.inf
Needs=WUDFRD.NT.HW
;-------------- Service installation
[SimpleDeviceOrientationSensor_Inst.NT.Services]
Include=WUDFRD.inf
Needs=WUDFRD.NT.Services
;-------------- WDF specific section
[SimpleDeviceOrientationSensor_Inst.NT.Wdf]
UmdfService = SimpleDeviceOrientationSensor, SimpleDeviceOrientationSensor_Install
UmdfServiceOrder = SimpleDeviceOrientationSensor
UmdfDirectHardwareAccess = AllowDirectHardwareAccess
UmdfFileObjectPolicy = AllowNullAndUnknownFileObjects
UmdfFsContextUsePolicy = CannotUseFsContexts
[SimpleDeviceOrientationSensor_Install]
UmdfLibraryVersion = $UMDFVERSION$
ServiceBinary = %12%\UMDF\SimpleDeviceOrientationSensor.dll
UmdfExtensions = SensorsCx0102
[Strings]
;Localizable Strings
MediaDescription = "Windows Simple Device Orientation Sensor sample Driver"
ProviderName = "TODO-Set-Provider"
ManufacturerName = "TODO-Set-Manufacturer"
SimpleDeviceOrientationSensor_DevDesc = "Simple Device Orientation Sensor sample"
;Non-Localizable Strings
|