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.

71 lines
1.6 KiB

  1. ; Copyright (c) 1993-1999 Microsoft Corporation
  2. ;
  3. ; DDK Sample INF File for PCIIDE
  4. ;
  5. [version]
  6. Signature="$WINDOWS NT$"
  7. Class=hdc
  8. ClassGuid={4D36E96A-E325-11CE-BFC1-08002BE10318}
  9. Provider=%MS%
  10. ;CatalogFile = catalog.cat - If this was an acutal IHV produced miniport driver
  11. ; inf, the catalog name would be supplied here.
  12. DriverVer=06/24/1999,5.00.2071.1
  13. [SourceDisksNames]
  14. 1 = %Disk1Desc%
  15. [SourceDisksFiles]
  16. pciide.sys = 1
  17. [DestinationDirs]
  18. DefaultDestDir = 12 ; DIRID_DRIVERS
  19. [Manufacturer]
  20. %MS-Drivers%=MS_HDC
  21. [MS_HDC]
  22. %PCI\CC_0101.DeviceDesc% = pciide_Inst,,PCI\CC_0101 ;Compatible Device ID for generic Dual PCI IDE
  23. ;****************************************************
  24. ; Generic Dual PCI IDE Controller
  25. [pciide_Inst]
  26. CopyFiles = @pciide.sys
  27. [pciide_Inst.Services]
  28. AddService = pciide, %SPSVCINST_ASSOCSERVICE%, pciide_Service_Inst
  29. [pciide_Service_Inst]
  30. ServiceType = %SERVICE_KERNEL_DRIVER%
  31. StartType = %SERVICE_BOOT_START%
  32. ErrorControl = %SERVICE_ERROR_NORMAL%
  33. ServiceBinary = %12%\pciide.sys
  34. LoadOrderGroup = System Bus Extender
  35. [ControlFlags]
  36. CopyFilesOnly=PCI\CC_0101
  37. [Strings]
  38. MS = "Microsoft"
  39. MS-Drivers = "(Standard IDE ATA/ATAPI controllers)"
  40. PCI\CC_0101.DeviceDesc = "Standard Dual Channel PCI IDE Controller"
  41. Disk1Desc = "Installation Disk for Standard IDE Controller"
  42. ;*******************************************
  43. ;Handy macro substitutions (non-localizable)
  44. SPSVCINST_ASSOCSERVICE = 0x00000002
  45. SERVICE_KERNEL_DRIVER = 1
  46. SERVICE_BOOT_START = 0
  47. SERVICE_ERROR_NORMAL = 1