[MMIXER] Fix additional data size initialization for different audio formats (#6753)
[reactos.git] / media / inf / btrfs.inf
1 ;;;
2 ;;; WinBtrfs
3 ;;;
4 ;;;
5 ;;; Copyright (c) 2016-19 Mark Harmstone
6 ;;;
7
8 [Version]
9 Signature = "$Windows NT$"
10 Class = Volume
11 ClassGuid = {71a27cdd-812a-11d0-bec7-08002be2092f}
12 Provider = %Me%
13 DriverVer = 06/08/2019,1.3.0.0
14 CatalogFile = btrfs.cat
15
16 [DestinationDirs]
17 DefaultDestDir = 12
18 Btrfs.DriverFiles = 12 ;%windir%\system32\drivers
19 Btrfs.DllFiles = 11 ;%windir%\system32
20
21 ;;
22 ;; Default install sections
23 ;;
24
25 [DefaultInstall]
26 OptionDesc = %ServiceDescription%
27 CopyFiles = Btrfs.DriverFiles,Btrfs.DllFiles
28 RegisterDlls = shellbtrfs
29 CopyINF = btrfs.inf
30
31 [DefaultInstall.Services]
32 AddService = %ServiceName%,0x802,Btrfs.Service
33
34 [Manufacturer]
35 %Me%=Standard,NTamd64,NTx86
36
37 [Standard.NTamd64]
38 %VolumeName% = Btrfs_Install, BtrfsVolume
39 %ControllerName% = Btrfs_Install, ROOT\btrfs
40 %ControllerName% = Btrfs_Install, ROOT\btrfs
41 %ControllerName% = Btrfs_Install, DETECTED\BTRFS
42
43 [Standard.NTx86]
44 %VolumeName% = Btrfs_Install, BtrfsVolume
45 %ControllerName% = Btrfs_Install, ROOT\btrfs
46 %ControllerName% = Btrfs_Install, DETECTED\BTRFS
47
48 [Btrfs_Install]
49 OptionDesc = %ServiceDescription%
50
51 [Btrfs_Install.Services]
52 AddService = %ServiceName%,2,Btrfs.Service
53
54 ;;
55 ;; Default uninstall sections
56 ;;
57
58 [DefaultUninstall]
59 UnregisterDlls = shellbtrfs
60 DelFiles = Btrfs.DriverFiles,Btrfs.DllFiles
61
62 [DefaultUninstall.Services]
63 DelService = %ServiceName%,0x200 ;Ensure service is stopped before deleting
64
65 ;
66 ; Services Section
67 ;
68
69 [Btrfs.Service]
70 DisplayName = %ServiceName%
71 Description = %ServiceDescription%
72 ServiceBinary = %12%\%DriverName%.sys ;%windir%\system32\drivers\
73 ServiceType = 1
74 StartType = 1 ;SERVICE_SYSTEM_START
75 ErrorControl = 1
76 LoadOrderGroup = "File System"
77
78 [shellbtrfs]
79 11,,shellbtrfs.dll,1
80
81 ;
82 ; Copy Files
83 ;
84
85 [Btrfs.DriverFiles]
86 %DriverName%.sys
87
88 [Btrfs.DllFiles]
89 shellbtrfs.dll
90 ubtrfs.dll
91 mkbtrfs.exe
92
93
94 [SourceDisksNames.x86]
95 1 = %DiskId1%,,,\x86
96
97 [SourceDisksNames.amd64]
98 1 = %DiskId1%,,,\x64
99
100 ;;
101 ;; String Section
102 ;;
103
104 [Strings]
105 Me = "Mark Harmstone"
106 ServiceDescription = "Btrfs driver"
107 ServiceName = "btrfs"
108 DriverName = "btrfs"
109 DiskId1 = "Btrfs Device Installation Disk"
110 VolumeName = "Btrfs volume"
111 ControllerName = "Btrfs controller"