- Timestamp:
- Dec 15, 2008 9:42:39 AM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r15439 r15485 875 875 #endif 876 876 /* Pass all custom parameters. */ 877 bool fHostIP = true; 877 878 SafeArray <BSTR> names; 878 879 SafeArray <BSTR> values; … … 890 891 rc = CFGMR3InsertString (pVDC, Utf8Str (names [i]), 891 892 Utf8Str (values [i])); RC_CHECK(); 893 if ( names [i] == L"HostIPStack" 894 && values [i] == L"0") 895 fHostIP = false; 896 } 897 /* Custom code: put marker to not use host IP stack to driver 898 * configuration node. Simplifies life of DrvVD a bit. */ 899 if (!fHostIP) 900 { 901 rc = CFGMR3InsertString (pCfg, "HostIPStack", "0"); RC_CHECK(); 892 902 } 893 903 } -
trunk/src/VBox/Main/HardDisk2Impl.cpp
r15484 r15485 1313 1313 1314 1314 STDMETHODIMP HardDisk2::FlattenTo (IHardDisk2 *aTarget, IProgress **aProgress) 1315 {1316 AutoCaller autoCaller (this);1317 CheckComRCReturnRC (autoCaller.rc());1318 1319 ReturnComNotImplemented();1320 }1321 1322 STDMETHODIMP HardDisk2::Compact (IProgress **aProgress)1323 1315 { 1324 1316 AutoCaller autoCaller (this);
Note:
See TracChangeset
for help on using the changeset viewer.