Source code of Windows XP (NT5)
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.

69 lines
1.4 KiB

  1. ;/*++
  2. ;
  3. ;Copyright (c) 1990-2000 Microsoft Corporation All rights Reserved
  4. ;
  5. ;Module Name:
  6. ;
  7. ; fpfilter.INF
  8. ;
  9. ;Abstract:
  10. ; INF file for installing sample portio driver
  11. ;
  12. ;--*/
  13. [Version]
  14. Signature="$WINDOWS NT$"
  15. Class=Sample
  16. ClassGuid={78A1C341-4539-11d3-B88D-00C04FAD5171}
  17. Provider=%MSFT%
  18. DriverVer=06/16/1999,5.00.2072
  19. [DestinationDirs]
  20. DefaultDestDir = 12
  21. ; ================= Class section =====================
  22. [ClassInstall32]
  23. Addreg=SampleClassReg
  24. [SampleClassReg]
  25. HKR,,,0,%ClassName%
  26. HKR,,Icon,,-5
  27. ; ================= Device Install section =====================
  28. [Manufacturer]
  29. %MSFT%=MSFT
  30. [SourceDiskFiles]
  31. fpfilter.sys=1
  32. [SourceDiskNames]
  33. 1="Install disk",
  34. [MSFT]
  35. ; DisplayName Section DeviceId
  36. ; ----------- ------- --------
  37. %FpFilter.DRVDESC%=FpFilter_Inst,root\LEGACY_FpFilter
  38. [FpFilter_Inst.NT]
  39. CopyFiles=FpFilter.CopyFiles
  40. [FpFilter.CopyFiles]
  41. FpFilter.sys
  42. [FpFilter_Inst.NT.Services]
  43. AddService=FpFilter,0x00000002,FpFilter_Service
  44. [FpFilter_Service]
  45. DisplayName = %FpFilter.SVCDESC%
  46. ServiceType = 1 ; SERVICE_KERNEL_DRIVER
  47. StartType = 0
  48. ErrorControl = 1 ; SERVICE_ERROR_NORMAL
  49. ServiceBinary = %12%\fpfilter.sys
  50. [Strings]
  51. MSFT = "Microsoft"
  52. ClassName = "Sample Drivers"
  53. FpFilter.SVCDESC = "Sample Failure Prediction Filter Service"
  54. FpFilter.DRVDESC = "Sample Failure Prediction Filter Driver"