Changeset 17516 in vbox for trunk/src/VBox/Main/win
- Timestamp:
- Mar 7, 2009 6:04:13 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/win/NetIfList-win.cpp
r17508 r17516 2110 2110 } 2111 2111 2112 int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO * )2112 int NetIfGetConfig(HostNetworkInterface * pIf, NETIFINFO *pInfo) 2113 2113 { 2114 2114 #ifndef VBOX_WITH_NETFLT 2115 2115 return VERR_NOT_IMPLEMENTED; 2116 2116 #else 2117 return VERR_NOT_IMPLEMENTED; 2117 Bstr name; 2118 HRESULT hr = pIf->COMGETTER(Name)(name.asOutParam()); 2119 if(SUCCEEDED(hr)) 2120 { 2121 return collectNetIfInfo(name, pInfo); 2122 } 2123 return VERR_GENERAL_FAILURE; 2118 2124 #endif 2119 2125 }
Note:
See TracChangeset
for help on using the changeset viewer.