阅读:1144回复:0
请教斑竹和各位大侠,关于inf文件的。
各位大侠,小弟在2000下为视频采集卡编写了一个inf文件,这个inf文件是为 自己的视频卡所编写的一个WDM驱动程序所服务的,驱动只是编写了一个功能 驱动程序,并没有编写成视频流驱动的格式。然后小弟把inf文件编写好了 以后,试图安装驱动。在98下可以安装,但是在2000下的安装有问题, 老是说找不到指定的域,安装不成功。小弟真是郁闷。
现在把inf文件写出,请各位大侠给小弟指点,谢谢。 VideoCapture.inf文件内容如下: ; VideoCapture.Inf - install information file ; Copyright ?2002,Automatiziation and Information Technology [Version] Signature=$CHICAGO$ Class=Media ClassGuid={575E8E79-917C-47b9-B8BD-AC92CFCD75A9} Provider=%MFGNAME% [Manufacturer] %MFGNAME%=DeviceList [DestinationDirs] DefaultDestDir=10,System32\\Drivers [SourceDisksFiles] VideoCapture.sys=1 [SourceDisksNames] 1=\"VideoCapture build directory\",,, [DeviceList] %DESCRIPTION%=DriverInstall,PCI\\VEN_109E&DEV_036E ;------------------------------------------------------------------------------ ; Windows 2000 Sections ;------------------------------------------------------------------------------ [DriverInstall.NT] CopyFiles=DriverCopyFiles [DriverCopyFiles] VideoCapture.sys,,,2 [DriverInstall.NT.Services] AddService=VIDEOCAPTURE,2,DriverService [DriverService] ServiceType=1 StartType=3 ErrorControl=1 ServiceBinary=%10%\\system32\\drivers\\VideoCapture.sys ;------------------------------------------------------------------------------ ; Windows 98 Sections ;------------------------------------------------------------------------------ [DriverInstall] AddReg=DriverAddReg CopyFiles=DriverCopyFiles [DriverAddReg] HKR,,DevLoader,,*ntkern HKR,,NTMPDriver,,VideoCapture.sys [DriverCopyFiles] VideoCapture.sys ;------------------------------------------------------------------------------ ; String Definitions ;------------------------------------------------------------------------------ [Strings] MFGNAME=\"自动化与信息技术\" DESCRIPTION=\"Fusion 878 Video Capture Device\" |
|