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.

102 lines
3.0 KiB

  1. [Version]
  2. Signature="$WINDOWS NT$"
  3. Class=System
  4. ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
  5. Provider=%MSFT%
  6. LayoutFile=layout.inf
  7. CatalogFile=delta.cat
  8. DriverVer=12/10/2001,5.1.3593.0
  9. [DestinationDirs]
  10. DefaultDestDir = 12
  11. [Manufacturer]
  12. %GENDEV_MFG%=GENDEV_SYS
  13. [GENDEV_SYS]
  14. %VEN_ABCD&DEV_DCBA.DeviceDesc% = SOFTPCI_DRV, PCI\VEN_ABCD&DEV_DCBA&SUBSYS_DCBAABCD
  15. %VEN_ABCD&DEV_DCBB.DeviceDesc% = PCI_DRV, PCI\VEN_ABCD&DEV_DCBB
  16. %VEN_ABCD&DEV_DCBC.DeviceDesc% = HPPCI_DRV, PCI\VEN_ABCD&DEV_DCBC
  17. ;%VEN_ABCD&DEV_DCBD.DeviceDesc% = HPPCI_DRV, PCI\VEN_ABCD&DEV_DCBD
  18. [PCI_DRV]
  19. CopyFiles=pci.sys
  20. [PCI_DRV.Services]
  21. Include=machine.inf
  22. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  23. ;****************************************************
  24. ; SoftPci function driver
  25. [SOFTPCI_DRV]
  26. CopyFiles=softpci.sys
  27. [SOFTPCI_DRV.Services]
  28. AddService = SoftPCI,%SPSVCINST_ASSOCSERVICE%,softpci_ServiceInstallSection
  29. [softpci_ServiceInstallSection]
  30. DisplayName = %softpci_filterdesc%
  31. ServiceType = %SERVICE_KERNEL_DRIVER%
  32. StartType = %SERVICE_BOOT_START%
  33. ErrorControl = %SERVICE_ERROR_NORMAL%
  34. ServiceBinary = %12%\softpci.sys
  35. ;****************************************************
  36. ; Hotplug Controller simulator and driver
  37. [HPPCI_DRV]
  38. CopyFiles=HPPCI.CopyFiles
  39. [HPPCI_DRV.HW]
  40. AddReg = HPPCI_Filter_Reg
  41. [HPPCI_DRV.Services]
  42. Include = machine.inf
  43. AddService = hpsim,0,hpsim_ServiceInstallSection
  44. AddService = shpc,0,shpc_ServiceInstallSection
  45. AddService = pci, %SPSVCINST_ASSOCSERVICE%, pci_ServiceInstallSection
  46. [HPPCI_Filter_Reg]
  47. HKR,,"LowerFilters", 0x00010000,"hpsim"
  48. HKR,,"UpperFilters", 0x00010000,hpsim,shpc
  49. [HPPCI.CopyFiles]
  50. hpsim.sys
  51. shpc.sys
  52. [hpsim_ServiceInstallSection]
  53. DisplayName = %hpsim_svcdesc%
  54. ServiceType = %SERVICE_KERNEL_DRIVER%
  55. StartType = %SERVICE_DEMAND_START%
  56. ErrorControl = %SERVICE_ERROR_NORMAL%
  57. ServiceBinary = %12%\hpsim.sys
  58. [shpc_ServiceInstallSection]]
  59. DisplayName = %shpc_svcdesc%
  60. ServiceType = %SERVICE_KERNEL_DRIVER%
  61. StartType = %SERVICE_DEMAND_START%
  62. ErrorControl = %SERVICE_ERROR_NORMAL%
  63. ServiceBinary = %12%\shpc.sys
  64. ;****************************************************
  65. ;Device descriptions
  66. [Strings]
  67. GENDEV_MFG = "(Standard system devices)"
  68. SystemClassName = "System devices"
  69. MSFT = "Microsoft"
  70. VEN_ABCD&DEV_DCBA.DeviceDesc = "Microsoft SoftPCI Device"
  71. VEN_ABCD&DEV_DCBB.DeviceDesc = "Microsoft SoftPCI-PCI Bridge"
  72. VEN_ABCD&DEV_DCBC.DeviceDesc = "Microsoft SoftPCI-HotPlug PCI Bridge"
  73. ;****************************************************
  74. ;Service descriptions
  75. softpci_filterdesc = "Microsoft SoftPCI Bus Filter"
  76. hpsim_svcdesc = "Microsoft Hotplug Controller Simulator Filter"
  77. shpc_svcdesc = "Microsoft Hotplug Controller Bus Filter"
  78. ;****************************************************
  79. ;Handy macro substitutions (non-localizable)
  80. SPSVCINST_ASSOCSERVICE = 0x00000002
  81. SERVICE_KERNEL_DRIVER = 1
  82. SERVICE_BOOT_START = 0
  83. SERVICE_DEMAND_START = 3
  84. SERVICE_ERROR_NORMAL = 1