Changeset 15309 in vbox
- Timestamp:
- Dec 11, 2008 3:46:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r15305 r15309 221 221 if (fHWVirtExEnabled) 222 222 { 223 PRBoolfSupportsLongMode = false, fIs64BitGuest = false;223 BOOL fSupportsLongMode = false, fIs64BitGuest = false; 224 224 ComPtr<IGuest> guest; 225 225 ComPtr <IGuestOSType> guestOSType; 226 226 Bstr osTypeId; 227 227 rc = pMachine->COMGETTER(OSTypeId)(osTypeId.asOutParam()); RC_CHECK(); 228 rc = virtualBox->COMGETTER(GuestOSType) (osTypeId, 229 guestOSType.asOutParam()); RC_CHECK(); 230 rc = host->COMGETTER(ProcessorFeature) (ProcessorFeature_LongMode, 228 rc = virtualBox->GetGuestOSType (osTypeId, guestOSType.asOutParam()); RC_CHECK(); 229 rc = host->GetProcessorFeature(ProcessorFeature_LongMode, 231 230 &fSupportsLongMode); RC_CHECK(); 232 231 rc = guestOSType->COMGETTER(Is64Bit) (&fIs64BitGuest); RC_CHECK();
Note:
See TracChangeset
for help on using the changeset viewer.