Changeset 15442 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Dec 13, 2008 1:40:42 PM (16 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostNetworkInterfaceImpl.h
r15372 r15442 28 28 #include "Collection.h" 29 29 #ifdef VBOX_WITH_HOSTNETIF_API 30 #include "netif.h" 30 /* class HostNetworkInterface; */ 31 /* #include "netif.h" */ 32 struct NETIFINFO; 31 33 #endif 32 34 … … 60 62 HRESULT init (Bstr interfaceName, Guid guid); 61 63 #ifdef VBOX_WITH_HOSTNETIF_API 62 HRESULT init ( PNETIFINFOpIfs);64 HRESULT init (Bstr aInterfaceName, struct NETIFINFO *pIfs); 63 65 #endif 64 66 -
trunk/src/VBox/Main/include/netif.h
r15372 r15442 35 35 #include <iprt/net.h> 36 36 37 //#include "VBox/com/ptr.h" 38 //#include <list> 37 39 40 #if 1 38 41 /** 39 42 * Encapsulation type. … … 79 82 /** Pointer to a const network interface info. */ 80 83 typedef NETIFINFO const *PCNETIFINFO; 84 #endif 81 85 82 PNETIFINFO NetIfList();86 int NetIfList(std::list <ComObjPtr <HostNetworkInterface> > &list); 83 87 84 88 #endif
Note:
See TracChangeset
for help on using the changeset viewer.