- Timestamp:
- Nov 25, 2009 12:16:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r24858 r24948 138 138 BOOL fPresent = FALSE; 139 139 Bstr aFilePath, empty; 140 140 141 141 rc = vbox->CheckFirmwarePresent(aFirmwareType, empty, 142 142 empty.asOutParam(), aFilePath.asOutParam(), &fPresent); … … 785 785 else 786 786 { 787 Utf8Str efiRomFile; 788 787 Utf8Str efiRomFile; 788 789 789 /* Autodetect firmware type, basing on guest type */ 790 790 if (eFwType == FirmwareType_EFI) … … 2947 2947 SafeArray<ULONG64> timestampsOut; 2948 2948 SafeArray<BSTR> flagsOut; 2949 HRESULT hrc = pConsole->mControl->PullGuestProperties 2950 (ComSafeArrayAsOutParam(namesOut), 2951 ComSafeArrayAsOutParam(valuesOut), 2952 ComSafeArrayAsOutParam(timestampsOut), 2953 ComSafeArrayAsOutParam(flagsOut)); 2954 AssertMsgReturn(SUCCEEDED(hrc), ("hrc=%#x\n", hrc), 2955 VERR_GENERAL_FAILURE); 2949 HRESULT hrc; 2950 hrc = pConsole->mControl->PullGuestProperties(ComSafeArrayAsOutParam(namesOut), 2951 ComSafeArrayAsOutParam(valuesOut), 2952 ComSafeArrayAsOutParam(timestampsOut), 2953 ComSafeArrayAsOutParam(flagsOut)); 2954 AssertMsgReturn(SUCCEEDED(hrc), ("hrc=%Rrc\n", hrc), VERR_GENERAL_FAILURE); 2956 2955 size_t cProps = namesOut.size(); 2957 2956 size_t cAlloc = cProps + 1;
Note:
See TracChangeset
for help on using the changeset viewer.