Changeset 26186 in vbox for trunk/src/VBox/Main/generic/NetIf-generic.cpp
- Timestamp:
- Feb 3, 2010 1:07:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/generic/NetIf-generic.cpp
r26177 r26186 231 231 Bstr ifname; 232 232 ComPtr<IHostNetworkInterface> iface; 233 if (FAILED 233 if (FAILED(host->FindHostNetworkInterfaceById (Guid(aId).toUtf16(), iface.asOutParam()))) 234 234 return VERR_INVALID_PARAMETER; 235 iface->COMGETTER 235 iface->COMGETTER(Name) (ifname.asOutParam()); 236 236 if (ifname.isNull()) 237 237 return VERR_INTERNAL_ERROR;
Note:
See TracChangeset
for help on using the changeset viewer.