diff options
| author | Dave Wilson <[email protected]> | 2015-04-29 09:48:49 -0700 |
|---|---|---|
| committer | Dave Wilson <[email protected]> | 2015-04-29 10:47:29 -0700 |
| commit | d40232638faaab19de557e70a3ee938da7a35295 (patch) | |
| tree | 14e61c973745949af186b7940e3a53d25322f5de /storage/class/disk/src/diskdev.inf | |
| parent | 02e5b090a6131a7cc1b90f4a9373117c9e3c7088 (diff) | |
samples update for //build
Diffstat (limited to 'storage/class/disk/src/diskdev.inf')
| -rw-r--r-- | storage/class/disk/src/diskdev.inf | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/storage/class/disk/src/diskdev.inf b/storage/class/disk/src/diskdev.inf new file mode 100644 index 00000000..78bea6a4 --- /dev/null +++ b/storage/class/disk/src/diskdev.inf @@ -0,0 +1,113 @@ +; disk.inf +; +; Installation inf for the Disk drive adapter. +; +; SAMPLE INF File for Class Driver +; FOR DDK - Driver Development Kit +; +; (c) Copyright 1999 Microsoft Corp. +; + +[Version] +Signature="$Windows NT$" +Provider=%MS% +ClassGUID={4d36e967-e325-11ce-bfc1-08002be10318} +Class=DiskDrive +DriverVer=08/27/1999,5.2.1425.0 +;CatalogFile=your_cat_here.cat ; Supply your own catalog file here. + +[DestinationDirs] +DefaultDestDir = 12 + +; +; Driver information +; + +[Manufacturer] +%MS% = MS.Mfg, NTx86, NTia64, NTamd64 + +[MS.Mfg.NTx86] +%MS.DeviceDesc0% = disk, GenDisk +%MS.DeviceDesc1% = disk, GenOptical + +[MS.Mfg.NTia64] +%MS.DeviceDesc0% = disk, GenDisk +%MS.DeviceDesc1% = disk, GenOptical + +[MS.Mfg.NTamd64] +%MS.DeviceDesc0% = disk, GenDisk +%MS.DeviceDesc1% = disk, GenOptical + + +; +; General installation section +; + +[disk.NT] +CopyFiles=disk.CopyFiles + +; +; File sections +; + +[disk.CopyFiles] +disk.sys + + +; +; Service Installation +; + +[disk.NT.Services] +AddService = disk, 0x00000002 , disk_Service_Inst + +[disk_Service_Inst] +DisplayName = %disk.SvcDesc% +ServiceType = 1 ; SERVICE_KERNEL_DRIVER +StartType = 0 ; SERVICE_SYSTEM_START +ErrorControl = 1 ; SERVICE_ERROR_NORMAL +LoadOrderGroup = SCSI Class +ServiceBinary = %12%\disk.sys + + +; +; Source file information +; + +[SourceDisksNames.x86] +1 = %DiskId1%,,,\i386 + +[SourceDisksNames.ia64] +1 = %DiskId1%,,,\ia64 + +[SourceDisksNames.amd64] +1 = %DiskId1%,,,\amd64 + +[SourceDisksFiles] +; Files for disk Microsoft Corp. Installation Disk #1 (DiskDrive) +disk.sys = 1,, + + +[Strings] + +; +; Non-Localizable Strings +; + +REG_SZ = 0x00000000 +REG_MULTI_SZ = 0x00010000 +REG_EXPAND_SZ = 0x00020000 +REG_BINARY = 0x00000001 +REG_DWORD = 0x00010001 +SERVICEROOT = "System\CurrentControlSet\Services" + +; +; Localizable Strings +; + +MS.DeviceDesc0 = "Disk drive" +MS.DeviceDesc1 = "Optical disk drive" +DiskId1 = "Microsoft Corp. Installation Disk #1 (DiskDrive)" +MS = "Microsoft Corp." +disk.SvcDesc="Disk Drive" + |
