Changeset 81119 in vbox for trunk/src/VBox
- Timestamp:
- Oct 6, 2019 12:37:56 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133746
- Location:
- trunk/src/VBox
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r81084 r81119 1306 1306 ComPtr<IProgress> progress; 1307 1307 CHECK_ERROR2_RET(hrc, oCloudClient, 1308 ExportImage(pImage, pVirtualBox,ComSafeArrayAsInParam(parameters), progress.asOutParam()),1308 ExportImage(pImage, ComSafeArrayAsInParam(parameters), progress.asOutParam()), 1309 1309 RTEXITCODE_FAILURE); 1310 1310 hrc = showProgress(progress); … … 1376 1376 ComPtr<IProgress> progress; 1377 1377 CHECK_ERROR2_RET(hrc, oCloudClient, 1378 ImportImage(Bstr(strImageId).raw(), pVirtualBox,ComSafeArrayAsInParam(parameters), progress.asOutParam()),1378 ImportImage(Bstr(strImageId).raw(), ComSafeArrayAsInParam(parameters), progress.asOutParam()), 1379 1379 RTEXITCODE_FAILURE); 1380 1380 hrc = showProgress(progress); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp
r79365 r81119 420 420 /* Read Cloud Client description form: */ 421 421 CVirtualSystemDescriptionForm comForm; 422 CProgress comImportDescriptionFormProgress = m_comCloudClient.GetImportDescriptionForm(com VBox, comDescription, comForm);422 CProgress comImportDescriptionFormProgress = m_comCloudClient.GetImportDescriptionForm(comDescription, comForm); 423 423 if (!m_comCloudClient.isOk()) 424 424 { -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r81087 r81119 4119 4119 <interface 4120 4120 name="IVirtualSystemDescription" extends="$unknown" 4121 uuid=" ec49259c-1c50-4353-97a5-0fd92e2caac2"4121 uuid="01510f40-c196-4d26-b8db-4c8c389f1f82" 4122 4122 wsmap="managed" 4123 4123 reservedMethods="4" reservedAttributes="4" … … 4382 4382 </param> 4383 4383 </method> 4384 4384 4385 </interface> 4385 4386 … … 26452 26453 </desc> 26453 26454 </param> 26454 <param name="virtualBox" type="IVirtualBox" dir="in">26455 <desc>Reference to the server-side API root object.</desc>26456 </param>26457 26455 </method> 26458 26456 … … 26494 26492 import from OCI. 26495 26493 </desc> 26496 <param name="virtualBox" type="IVirtualBox" dir="in">26497 <desc>26498 Reference to the server-side API root object.26499 </desc>26500 </param>26501 26494 <param name="description" type="IVirtualSystemDescription" dir="in"> 26502 26495 <desc> … … 26523 26516 <param name="description" type="IVirtualSystemDescription" dir="in"> 26524 26517 <desc>VirtualSystemDescription object which is describing a machine and all required parameters.</desc> 26525 </param>26526 <param name="virtualBox" type="IVirtualBox" dir="in">26527 <desc>Reference to the server-side API root object.</desc>26528 26518 </param> 26529 26519 <param name="progress" type="IProgress" dir="in"> … … 26640 26630 <desc>Reference to the existing VBox image.</desc> 26641 26631 </param> 26642 <param name="virtualBox" type="IVirtualBox" dir="in">26643 <desc>Reference to the server-side API root object.</desc>26644 </param>26645 26632 <param name="parameters" type="wstring" dir="in" safearray="yes"> 26646 26633 <desc>Each parameter in the array must be in the form "name=value".</desc> … … 26657 26644 <param name="uid" type="wstring" dir="in"> 26658 26645 <desc>the id of image in the Cloud.</desc> 26659 </param>26660 <param name="virtualBox" type="IVirtualBox" dir="in">26661 <desc>Reference to the server-side API root object.</desc>26662 26646 </param> 26663 26647 <param name="parameters" type="wstring" dir="in" safearray="yes"> -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r80603 r81119 2323 2323 { 2324 2324 ComPtr<IVirtualBox> VBox(mVirtualBox); 2325 hrc = cloudClient->ExportVM(m->virtualSystemDescriptions.front(), pTask->pProgress , VBox);2325 hrc = cloudClient->ExportVM(m->virtualSystemDescriptions.front(), pTask->pProgress); 2326 2326 } 2327 2327 else -
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r79985 r81119 1456 1456 * The most simple way is to create a TAR archive. */ 1457 1457 hrc = cloudClient->ImportInstance(m->virtualSystemDescriptions.front(), 1458 VBox,1459 1458 pProgress); 1460 1459 if (FAILED(hrc))
Note:
See TracChangeset
for help on using the changeset viewer.