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.

140 lines
3.8 KiB

  1. ;
  2. ; Testcap.INF -- This file contains installation information for Testcap,
  3. ; A sample WDM capture driver that requires no hardware
  4. ;
  5. ;*** Created 09/09/97 (Creation Date)
  6. ;
  7. [Version]
  8. LayoutFile=Layout.inf, Layout1.inf, Layout2.inf
  9. signature="$CHICAGO$"
  10. Class=Media
  11. ClassGUID={4d36e96c-e325-11ce-bfc1-08002be10318}
  12. Provider=%Msft%
  13. [ControlFlags]
  14. ;ExcludeFromSelect=*
  15. [Manufacturer]
  16. %MsftMfg%=Microsoft
  17. [DestinationDirs]
  18. Testcap.CopyDrivers=10,system32\drivers
  19. ;---------------------------------------------------------------
  20. ; M I C R O S O F T
  21. ;
  22. ; T E S T C A P
  23. ;---------------------------------------------------------------
  24. [Microsoft]
  25. %TESTCAP.DeviceDesc%=Testcap.Device,TESTCAP
  26. [Testcap.Device]
  27. Include= ks.inf, kscaptur.inf, ksfilter.inf
  28. Needs= KS.Registration,KSCAPTUR.Registration,MSPCLOCK.Installation
  29. AddReg= Testcap.AddReg
  30. CopyFiles= Testcap.CopyDrivers
  31. KnownFiles= Testcap.KnownFiles
  32. [Testcap.Device.NT]
  33. Include= ks.inf, kscaptur.inf, ksfilter.inf
  34. Needs= KS.Registration,KSCAPTUR.Registration.NT,MSPCLOCK.Installation
  35. AddReg= Testcap.AddReg
  36. CopyFiles= Testcap.CopyDrivers
  37. [Testcap.AddReg]
  38. HKR,,DevLoader,,*ntkern
  39. HKR,,NTMPDriver,,testcap.sys
  40. HKR,,PageOutWhenUnopened,3,01
  41. HKR,,DontSuspendIfStreamsAreRunning,3,01
  42. [Testcap.CopyDrivers]
  43. testcap.sys
  44. stream.sys
  45. [Testcap.KnownFiles]
  46. testcap.sys=safe
  47. [TESTCAP.Device.Interfaces]
  48. AddInterface={65e8773d-8f56-11d0-a3b9-00a0c9223196},"GLOBAL",VideoCapture,
  49. AddInterface={a799a800-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoTvTuner,
  50. AddInterface={a799a801-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoCrossbar,
  51. AddInterface={a799a802-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoTvAudio,
  52. [TESTCAP.Device.NT.Interfaces]
  53. AddInterface={65e8773d-8f56-11d0-a3b9-00a0c9223196},"GLOBAL",VideoCapture,
  54. AddInterface={a799a800-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoTvTuner,
  55. AddInterface={a799a801-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoCrossbar,
  56. AddInterface={a799a802-a46d-11d0-a18c-00a02401dcd4},"GLOBAL",VideoTvAudio,
  57. [VideoCapture]
  58. AddReg=VideoCapture.AddReg
  59. [VideoTvTuner]
  60. AddReg=VideoTvTuner.AddReg
  61. [VideoCrossbar]
  62. AddReg=VideoXBar.AddReg
  63. [VideoTvAudio]
  64. AddReg=VideoTvAudio.AddReg
  65. [VideoCapture.AddReg]
  66. HKR,,CLSID,,{17CCA71B-ECD7-11D0-B908-00A0C9223196}
  67. HKR,,FriendlyName,,%TESTCAP.Capture%
  68. ; IAMVideoCompression installed as static interface on both output pins
  69. HKR,PinFactory\0\Interfaces\{C6E13343-30AC-11d0-A18C-00A0C9118956},,,{C6E13343-30AC-11d0-A18C-00A0C9118956}
  70. HKR,PinFactory\1\Interfaces\{C6E13343-30AC-11d0-A18C-00A0C9118956},,,{C6E13343-30AC-11d0-A18C-00A0C9118956}
  71. [VideoTvTuner.AddReg]
  72. HKR,,CLSID,,{266EEE40-6C63-11cf-8A03-00AA006ECB65}
  73. HKR,,FriendlyName,,%TESTCAP.TvTuner%
  74. [VideoXBar.AddReg]
  75. HKR,,CLSID,,{71F96460-78F3-11d0-A18C-00A0C9118956}
  76. HKR,,FriendlyName,,%TESTCAP.Crossbar%
  77. [VideoTvAudio.AddReg]
  78. HKR,,CLSID,,{71F96462-78F3-11d0-A18C-00A0C9118956}
  79. HKR,,FriendlyName,,%TESTCAP.TvAudio%
  80. [Testcap.Device.NT.Services]
  81. AddService = TESTCAP,0x00000002,Testcap.ServiceInstall
  82. [Testcap.ServiceInstall]
  83. DisplayName = %TESTCAP.DeviceDesc%
  84. ServiceType = %SERVICE_KERNEL_DRIVER%
  85. StartType = %SERVICE_AUTO_START%
  86. ErrorControl = %SERVICE_ERROR_NORMAL%
  87. ServiceBinary = %12%\testcap.sys
  88. ;---------------------------------------------------------------
  89. ; S t r i n g s
  90. ;---------------------------------------------------------------
  91. [Strings]
  92. ;----------------
  93. ; Non-Localizable
  94. ;----------------
  95. SERVICE_KERNEL_DRIVER=1
  96. SERVICE_AUTO_START=2
  97. SERVICE_ERROR_NORMAL=1
  98. ;----------------
  99. ; Localizable
  100. ;----------------
  101. Msft= "Microsoft"
  102. MsftMfg= "Microsoft"
  103. TESTCAP.DeviceDesc= "Testcap, WDM Video Capture"
  104. TESTCAP.Capture= "TestCap Capture"
  105. TESTCAP.TvTuner= "TestCap TvTuner"
  106. TESTCAP.Crossbar= "TestCap Crossbar"
  107. TESTCAP.TvAudio= "TestCap TvAudio"