Changeset 7442 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Mar 13, 2008 2:33:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28880
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r7379 r7442 1060 1060 ComPtr<IHardDisk> hardDisk; 1061 1061 Bstr filePath; 1062 rc = machine->GetHardDisk( DiskControllerType_IDE0, 0, hardDisk.asOutParam());1062 rc = machine->GetHardDisk(StorageBus_IDE, 0, 0, hardDisk.asOutParam()); 1063 1063 if (SUCCEEDED(rc) && hardDisk) 1064 1064 { … … 1083 1083 RTPrintf("hda=\"none\"\n"); 1084 1084 } 1085 rc = machine->GetHardDisk( DiskControllerType_IDE0, 1, hardDisk.asOutParam());1085 rc = machine->GetHardDisk(StorageBus_IDE, 0, 1, hardDisk.asOutParam()); 1086 1086 if (SUCCEEDED(rc) && hardDisk) 1087 1087 { … … 1106 1106 RTPrintf("hdb=\"none\"\n"); 1107 1107 } 1108 rc = machine->GetHardDisk( DiskControllerType_IDE1, 1, hardDisk.asOutParam());1108 rc = machine->GetHardDisk(StorageBus_IDE, 1, 1, hardDisk.asOutParam()); 1109 1109 if (SUCCEEDED(rc) && hardDisk) 1110 1110 { … … 4510 4510 if (strcmp(hdds[0], "none") == 0) 4511 4511 { 4512 machine->DetachHardDisk( DiskControllerType_IDE0, 0);4512 machine->DetachHardDisk(StorageBus_IDE, 0, 0); 4513 4513 } 4514 4514 else … … 4543 4543 { 4544 4544 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 4545 CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0, 0));4545 CHECK_ERROR(machine, AttachHardDisk(uuid, StorageBus_IDE, 0, 0)); 4546 4546 } 4547 4547 else … … 4555 4555 if (strcmp(hdds[1], "none") == 0) 4556 4556 { 4557 machine->DetachHardDisk( DiskControllerType_IDE0, 1);4557 machine->DetachHardDisk(StorageBus_IDE, 0, 1); 4558 4558 } 4559 4559 else … … 4588 4588 { 4589 4589 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 4590 CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0, 1));4590 CHECK_ERROR(machine, AttachHardDisk(uuid, StorageBus_IDE, 0, 1)); 4591 4591 } 4592 4592 else … … 4600 4600 if (strcmp(hdds[2], "none") == 0) 4601 4601 { 4602 machine->DetachHardDisk( DiskControllerType_IDE1, 1);4602 machine->DetachHardDisk(StorageBus_IDE, 1, 1); 4603 4603 } 4604 4604 else … … 4633 4633 { 4634 4634 hardDisk->COMGETTER(Id)(uuid.asOutParam()); 4635 CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE1, 1));4635 CHECK_ERROR(machine, AttachHardDisk(uuid, StorageBus_IDE, 1, 1)); 4636 4636 } 4637 4637 else
Note:
See TracChangeset
for help on using the changeset viewer.