Changeset 77885 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Mar 26, 2019 4:21:44 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r77883 r77885 52 52 53 53 /** 54 * List all available cloud instances for the specified cloud provider. 55 * Available cloud instance is one which state whether "running" or "stopped". 56 * 54 * List all available cloud instances for the specified cloud provider. 55 * Available cloud instance is one which state whether "running" or "stopped". 56 * 57 57 * @returns RTEXITCODE 58 * @param a is the list of passed arguments 59 * @param iFirst is the position of the first unparsed argument in the arguments list 60 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 58 * @param a is the list of passed arguments 59 * @param iFirst is the position of the first unparsed argument in the arguments list 60 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 61 61 * arguments which have been already parsed before 62 62 */ … … 140 140 ComSafeArrayAsOutParam(arrayVMIds)), 141 141 RTEXITCODE_FAILURE); 142 RTPrintf("List of available instances for the cloud profile \'%ls\' \nand compartment \'%s\':\n", 142 RTPrintf("List of available instances for the cloud profile \'%ls\' \nand compartment \'%s\':\n", 143 143 bstrProfileName.raw(), strCompartmentId.c_str()); 144 144 size_t cIds = arrayVMIds.size(); … … 173 173 * 174 174 * @returns RTEXITCODE 175 * @param a is the list of passed arguments 176 * @param iFirst is the position of the first unparsed argument in the arguments list 177 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 175 * @param a is the list of passed arguments 176 * @param iFirst is the position of the first unparsed argument in the arguments list 177 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 178 178 * arguments which have been already parsed before 179 179 */ … … 245 245 CHECK_ERROR2_RET(hrc, pCloudProfile, 246 246 CreateCloudClient(oCloudClient.asOutParam()), 247 RTEXITCODE_FAILURE); 247 RTEXITCODE_FAILURE); 248 248 com::SafeArray<BSTR> arrayVMNames; 249 249 com::SafeArray<BSTR> arrayVMIds; … … 255 255 ComSafeArrayAsOutParam(arrayVMIds)), 256 256 RTEXITCODE_FAILURE); 257 RTPrintf("List of available images for the cloud profile \'%ls\' \nand compartment \'%s\':\n", 257 RTPrintf("List of available images for the cloud profile \'%ls\' \nand compartment \'%s\':\n", 258 258 bstrProfileName.raw(), strCompartmentId.c_str()); 259 259 size_t cNames = arrayVMNames.size(); … … 270 270 } 271 271 272 273 272 /** 274 273 * General function which handles the "list" commands 275 274 * 276 275 * @returns RTEXITCODE 277 * @param a is the list of passed arguments 278 * @param iFirst is the position of the first unparsed argument in the arguments list 279 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 276 * @param a is the list of passed arguments 277 * @param iFirst is the position of the first unparsed argument in the arguments list 278 * @param pCommonOpts is a pointer to the structure CLOUDCOMMONOPT with some common 280 279 * arguments which have been already parsed before 281 280 */
Note:
See TracChangeset
for help on using the changeset viewer.