Changeset 18375 in vbox for trunk/src/VBox/Main/win
- Timestamp:
- Mar 27, 2009 8:56:00 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/win/NetIfList-win.cpp
r18136 r18375 1006 1006 Bstr name; 1007 1007 ComObjPtr <HostNetworkInterface> iface; 1008 ComObjPtr <VirtualBox> vBox; 1008 1009 /* for SVCHlpMsg::RemoveHostOnlyNetworkInterface */ 1009 1010 Guid guid; … … 1082 1083 * CreateHostOnlyNetworkInterface() */ 1083 1084 rc = d->iface->init (Bstr(name), guid, HostNetworkInterfaceType_HostOnly); 1085 if(SUCCEEDED(rc)) 1086 { 1087 rc = d->iface->setVirtualBox(d->vBox); 1088 if(SUCCEEDED(rc)) 1089 { 1090 rc = d->iface->updateConfig(); 1091 } 1092 } 1084 1093 endLoop = true; 1085 1094 break; … … 2414 2423 // d->name = aName; 2415 2424 d->iface = iface; 2425 d->vBox = pVBox; 2416 2426 2417 2427 rc = pVBox->startSVCHelperClient (
Note:
See TracChangeset
for help on using the changeset viewer.