Changeset 94172 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Mar 11, 2022 2:24:52 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r94171 r94172 217 217 { "unattended", USAGE_S_NEWCMD, HELP_CMD_UNATTENDED, handleUnattended, 0 }, 218 218 { "discardstate", USAGE_S_NEWCMD, HELP_CMD_DISCARDSTATE, handleDiscardState, 0 }, 219 { "adoptstate", USAGE_ ADOPTSTATE, VBMG_CMD_TODO, handleAdoptState, 0 },219 { "adoptstate", USAGE_S_NEWCMD, HELP_CMD_ADOPTSTATE, handleAdoptState, 0 }, 220 220 { "snapshot", USAGE_S_NEWCMD, HELP_CMD_SNAPSHOT, handleSnapshot, 0 }, 221 221 { "closemedium", USAGE_CLOSEMEDIUM, VBMG_CMD_TODO, handleCloseMedium, 0 }, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r94171 r94172 115 115 USAGE_I_LISTPARTITIONS, 116 116 USAGE_I_CREATERAWVMDK, 117 USAGE_ADOPTSTATE,118 117 USAGE_I_MODINSTALL, 119 118 USAGE_I_MODUNINSTALL, -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r94171 r94172 591 591 592 592 #define SEP pcszSep1, pcszSep2 593 594 if (enmCommand == USAGE_ADOPTSTATE || enmCommand == USAGE_S_ALL)595 RTStrmPrintf(pStrm,596 "%s adoptstate %s <uuid|vmname> <state_file>\n"597 "\n", SEP);598 593 599 594 if (enmCommand == USAGE_CLOSEMEDIUM || enmCommand == USAGE_S_ALL) -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r94171 r94172 789 789 790 790 if (a->argc != 2) 791 return errorSyntax( USAGE_ADOPTSTATE,Misc::tr("Incorrect number of parameters"));791 return errorSyntax(Misc::tr("Incorrect number of parameters")); 792 792 793 793 ComPtr<IMachine> machine;
Note:
See TracChangeset
for help on using the changeset viewer.