X-Git-Url: http://git.onelab.eu/?p=ipfw.git;a=blobdiff_plain;f=original_passthru%2Fnetsf_m.inf;fp=original_passthru%2Fnetsf_m.inf;h=6605a0226b14cb2a2813cd5e56ca3fa9076096ad;hp=0000000000000000000000000000000000000000;hb=40445faa1db58b90083115bc315d095e7eb2fe51;hpb=fccf30d4bf6b00b317756a9ff9d2135b361d2599 diff --git a/original_passthru/netsf_m.inf b/original_passthru/netsf_m.inf new file mode 100644 index 0000000..6605a02 --- /dev/null +++ b/original_passthru/netsf_m.inf @@ -0,0 +1,93 @@ +; -- NETSF_M.INF -- +; +; Passsthru Miniport INF file +; +; Copyright (c) 1993-1999, Microsoft Corporation + +; ---------------------------------------------------------------------- +; Notes: +; 0. The term "filter" is used here to refer to an NDIS IM driver that +; implements a 1:1 relationship between upper and lower bindings. +; 1. Items specifically required for a filter have been marked with +; "!!--Filter Specific--!!" keyword +; 2. A filter DOES NOT require a notify object for proper installation. +; A notify object is only required if one wants to have better control +; over binding operations or if one wants to receive notifications +; when other components get installed/removed/bound/unbound. +; This sample uses a notify object as an example only. If you do not +; want to use a notify object, please comment out the lines that add +; ClsId and ComponentDll registry keys. +; ---------------------------------------------------------------------- + +[Version] +signature = "$Windows NT$" +Class = Net +ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318} +Provider = %Msft% +DriverVer =10/01/2002,6.0.5019.0 + +[ControlFlags] +ExcludeFromSelect = ms_passthrump + +[DestinationDirs] +DefaultDestDir=12 +; No files to copy + +[Manufacturer] +%Msft% = MSFT,NTx86,NTia64,NTamd64 + +;For Win2K + +[MSFT] +%PassthruMP_Desc% = PassthruMP.ndi, ms_passthrump + +;For WinXP and later + +[MSFT.NTx86] +%PassthruMP_Desc% = PassthruMP.ndi, ms_passthrump + +[MSFT.NTia64] +%PassthruMP_Desc% = PassthruMP.ndi, ms_passthrump + +[MSFT.NTamd64] +%PassthruMP_Desc% = PassthruMP.ndi, ms_passthrump + + +[PassthruMP.ndi] +AddReg = PassthruMP.ndi.AddReg +Characteristics = 0x29 ;NCF_NOT_USER_REMOVABLE | NCF_VIRTUAL | NCF_HIDDEN + +[PassthruMP.ndi.AddReg] +HKR, Ndi, Service, 0, PassthruMP + +[PassthruMP.ndi.Services] +AddService = PassthruMP,0x2, PassthruMP.AddService + + +[PassthruMP.AddService] +ServiceType = 1 ;SERVICE_KERNEL_DRIVER +StartType = 3 ;SERVICE_DEMAND_START +ErrorControl = 1 ;SERVICE_ERROR_NORMAL +ServiceBinary = %12%\passthru.sys +AddReg = PassthruMP.AddService.AddReg + + +[PassthruMP.AddService.AddReg] +; ---------------------------------------------------------------------- +; Add any miniport-specific parameters here. These are params that your +; filter device is going to use. +; +;HKR, Parameters, ParameterName, 0x10000, "MultiSz", "Parameter", "Value" +;HKR, Parameters, ParameterName2, 0x10001, 4 + +[Strings] +Msft = "Microsoft" +PassthruMP_Desc = "Passthru Miniport" + +[SourceDisksNames] +;None + +[SourceDisksFiles] +;None + +