1 | /* $Id: VBoxNetFltNotifyn.idl 29200 2010-05-07 12:14:18Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxNetFltNotify.idl - Network Filter Driver (Host), Windows Specific Code. Integration with IntNet/NetFlt
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 | /*
|
---|
18 | * Based in part on Microsoft DDK sample code for Sample Notify Object
|
---|
19 | *+---------------------------------------------------------------------------
|
---|
20 | *
|
---|
21 | * Microsoft Windows
|
---|
22 | * Copyright (C) Microsoft Corporation, 1992-2001.
|
---|
23 | *
|
---|
24 | *----------------------------------------------------------------------------
|
---|
25 | */
|
---|
26 | #include <netcfgn.idl>
|
---|
27 |
|
---|
28 | [
|
---|
29 | uuid(1ea703af-a150-4fdd-83dc-c07a7a460c7e),
|
---|
30 | version(1.0),
|
---|
31 | helpstring("VirtualBox Bridged Networking Driver Notify Object 1.0 Type Library")
|
---|
32 | ]
|
---|
33 | library VBoxNetFltNotifyLib
|
---|
34 | {
|
---|
35 | [
|
---|
36 | uuid(c631480a-acbe-4add-bb1d-3ed8aa52b5d9),
|
---|
37 | helpstring("VirtualBox Bridged Networking Driver Notify Object Class")
|
---|
38 | ]
|
---|
39 | coclass VBoxNetFltNotify
|
---|
40 | {
|
---|
41 | [restricted] interface INetCfgComponentControl;
|
---|
42 | [restricted] interface INetCfgComponentNotifyBinding;
|
---|
43 | };
|
---|
44 | }; |
---|