Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
1.7 KiB

  1. ; disk.inf
  2. ;
  3. ; Installation inf for the Disk drive adapter.
  4. ;
  5. ; SAMPLE INF File for Class Driver
  6. ; FOR DDK - Driver Development Kit
  7. ;
  8. ; (c) Copyright 1999 Microsoft Corp.
  9. ;
  10. [Version]
  11. Signature="$Windows NT$"
  12. Provider=%MS%
  13. ClassGUID={4d36e967-e325-11ce-bfc1-08002be10318}
  14. Class=DiskDrive
  15. ; CatalogFile=disk.cat ; Supply your own catalog file
  16. ; see DDK Doc.
  17. DriverVer=08/27/1999
  18. [DestinationDirs]
  19. DefaultDestDir = 12
  20. ;
  21. ; Driver information
  22. ;
  23. [Manufacturer]
  24. %MS% = MS.Mfg
  25. [MS.Mfg]
  26. %MS.DeviceDesc0% = disk, GenDisk
  27. %MS.DeviceDesc1% = disk, GenOptical
  28. ;
  29. ; General installation section
  30. ;
  31. [disk]
  32. ;
  33. ; File sections
  34. ;
  35. ;
  36. ; Service Installation
  37. ;
  38. [disk.Services]
  39. AddService = disk, 0x00000002 , disk_Service_Inst
  40. [disk_Service_Inst]
  41. DisplayName = %disk.SvcDesc%
  42. ServiceType = 1 ; SERVICE_KERNEL_DRIVER
  43. StartType = 1 ; SERVICE_SYSTEM_START
  44. ErrorControl = 0x1 ; SERVICE_ERROR_NORMAL
  45. LoadOrderGroup = Pointer Port
  46. ServiceBinary = %12%\disk.sys
  47. ;
  48. ; Source file information
  49. ;
  50. [SourceDisksNames.x86]
  51. 1 = %DiskId1%,,,""
  52. [SourceDisksFiles]
  53. ; Files for disk Microsoft Corp. Installation Disk #1 (DiskDrive)
  54. disk.sys = 1,,
  55. [Strings]
  56. ;
  57. ; Non-Localizable Strings
  58. ;
  59. REG_SZ = 0x00000000
  60. REG_MULTI_SZ = 0x00010000
  61. REG_EXPAND_SZ = 0x00020000
  62. REG_BINARY = 0x00000001
  63. REG_DWORD = 0x00010001
  64. SERVICEROOT = "System\CurrentControlSet\Services"
  65. ;
  66. ; Localizable Strings
  67. ;
  68. MS.DeviceDesc0 = "Disk drive"
  69. MS.DeviceDesc1 = "Optical disk drive"
  70. DiskId1 = "Microsoft Corp. Installation Disk #1 (DiskDrive)"
  71. MS = "Microsoft Corp."
  72. disk.SvcDesc="Disk Drive"