Changeset 16515 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 4, 2009 3:01:28 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageImport.cpp
r16495 r16515 97 97 { 98 98 com::SafeArray<VirtualSystemDescriptionType_T> retTypes; 99 com::SafeArray< ULONG> aRefs;99 com::SafeArray<BSTR> aRefs; 100 100 com::SafeArray<BSTR> aOrigValues; 101 101 com::SafeArray<BSTR> aConfigValues; … … 147 147 148 148 case VirtualSystemDescriptionType_HardDiskControllerIDE: 149 RTPrintf("%2d: IDE controller : reference ID %d"150 "\n (disable with \"-vsys %d -ignore %d\")\n", 151 a, 152 a Refs[a],149 RTPrintf("%2d: IDE controller, type %ls" 150 "\n (disable with \"-vsys %d -ignore %d\")\n", 151 a, 152 aConfigValues[a], 153 153 i, a); 154 154 break; 155 155 156 156 case VirtualSystemDescriptionType_HardDiskControllerSATA: 157 RTPrintf("%2d: SATA controller : reference ID %d"158 "\n (disable with \"-vsys %d -ignore %d\")\n", 159 a, 160 a Refs[a],157 RTPrintf("%2d: SATA controller, type %ls" 158 "\n (disable with \"-vsys %d -ignore %d\")\n", 159 a, 160 aConfigValues[a], 161 161 i, a); 162 162 break; 163 163 164 164 case VirtualSystemDescriptionType_HardDiskControllerSCSI: 165 RTPrintf("%2d: SCSI controller : reference ID %d, type %ls"166 "\n (change with \"-vsys %d - scsitype%d={BusLogic|LsiLogic}\";"165 RTPrintf("%2d: SCSI controller, type %ls" 166 "\n (change with \"-vsys %d -type%d={BusLogic|LsiLogic}\";" 167 167 "\n disable with \"-vsys %d -ignore %d\")\n", 168 168 a, 169 aRefs[a],170 169 aConfigValues[a], 171 170 i, a, i, a); … … 173 172 174 173 case VirtualSystemDescriptionType_HardDiskImage: 175 RTPrintf("%2d: Hard disk image: controller %d, source image \"%ls\", target image \"%ls\""174 RTPrintf("%2d: Hard disk image: source image=%ls, target path=%ls, %ls" 176 175 "\n (change controller with \"-vsys %d -controller%d=<id>\";" 177 176 "\n disable with \"-vsys %d -ignore %d\")\n", 178 177 a, 179 aRefs[a],180 178 aOrigValues[a], 181 179 aConfigValues[a], 180 aExtraConfigValues[a], 182 181 i, a, i, a); 183 182 break; … … 196 195 197 196 case VirtualSystemDescriptionType_NetworkAdapter: 198 RTPrintf("%2d: Network adapter: orig %ls, auto %ls, conf%ls\n",197 RTPrintf("%2d: Network adapter: orig %ls, config %ls, extra %ls\n", 199 198 a, 200 199 aOrigValues[a],
Note:
See TracChangeset
for help on using the changeset viewer.