1 | ;
|
---|
2 | ; VirtualBox Bridged Networking Driver
|
---|
3 | ;
|
---|
4 |
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2008 Oracle Corporation
|
---|
7 | ;
|
---|
8 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
10 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | ; General Public License (GPL) as published by the Free Software
|
---|
12 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 |
|
---|
17 | ;
|
---|
18 | ; Based in part on Microsoft DDK sample code for Ndis Intermediate Miniport passthru driver sample.
|
---|
19 | ; Copyright (c) 1993-1999, Microsoft Corporation
|
---|
20 | ;
|
---|
21 |
|
---|
22 | [Version]
|
---|
23 | signature = "$Windows NT$"
|
---|
24 | ;cat CatalogFile = VBoxNetFlt.cat
|
---|
25 | Class = Net
|
---|
26 | ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
|
---|
27 | Provider = %Provider%
|
---|
28 | ;DriverPackageType=NdisImMiniport
|
---|
29 | ;DriverPackageDisplayName=%VBoxNetFltMP_Desc%
|
---|
30 | ;edit-DriverVer=08/13/2008,1.1.0.1
|
---|
31 |
|
---|
32 | [ControlFlags]
|
---|
33 | ExcludeFromSelect = sun_VBoxNetFltmp
|
---|
34 |
|
---|
35 | [DestinationDirs]
|
---|
36 | DefaultDestDir=12
|
---|
37 | ; No files to copy
|
---|
38 |
|
---|
39 | [Manufacturer]
|
---|
40 | %Provider% = VBox,NTx86,NTia64,NTamd64
|
---|
41 |
|
---|
42 | ; For Win2K
|
---|
43 | [VBox]
|
---|
44 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
45 |
|
---|
46 | ; For XP and later
|
---|
47 | [VBox.NTx86]
|
---|
48 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
49 |
|
---|
50 | [VBox.NTia64]
|
---|
51 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
52 |
|
---|
53 | [VBox.NTamd64]
|
---|
54 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
55 |
|
---|
56 | [VBoxNetFltMP.ndi]
|
---|
57 | Characteristics = 0x29 ;NCF_NOT_USER_REMOVABLE | NCF_VIRTUAL | NCF_HIDDEN
|
---|
58 | CopyFiles =
|
---|
59 |
|
---|
60 | [VBoxNetFltMP.ndi.Services]
|
---|
61 | AddService = VBoxNetFlt,0x2, VBoxNetFltMP.AddService
|
---|
62 |
|
---|
63 |
|
---|
64 | [VBoxNetFltMP.AddService]
|
---|
65 | ServiceType = 1 ;SERVICE_KERNEL_DRIVER
|
---|
66 | StartType = 3 ;SERVICE_DEMAND_START
|
---|
67 | ErrorControl = 1 ;SERVICE_ERROR_NORMAL
|
---|
68 | ServiceBinary = %12%\VBoxNetFlt.sys
|
---|
69 |
|
---|
70 |
|
---|
71 | [VBoxNetFltMP.AddService.AddReg]
|
---|
72 | ; ----------------------------------------------------------------------
|
---|
73 | ; Add any miniport-specific parameters here. These are params that your
|
---|
74 | ; filter device is going to use.
|
---|
75 | ;
|
---|
76 | ;HKR, Parameters, ParameterName, 0x10000, "MultiSz", "Parameter", "Value"
|
---|
77 | ;HKR, Parameters, ParameterName2, 0x10001, 4
|
---|
78 |
|
---|
79 | [Strings]
|
---|
80 | Provider = "Oracle Corporation"
|
---|
81 | VBoxNetFltMP_Desc = "VirtualBox Bridged Networking Driver Miniport"
|
---|
82 |
|
---|
83 | [SourceDisksNames]
|
---|
84 | ;None
|
---|
85 |
|
---|
86 | [SourceDisksFiles]
|
---|
87 | ;None
|
---|
88 |
|
---|
89 |
|
---|
90 |
|
---|