Changeset 24371 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Nov 5, 2009 9:39:19 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54398
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r24301 r24371 773 773 774 774 systemProperties->COMGETTER(MinGuestRAM)(&ulValue); 775 RTPrintf("Minimum guest RAM size: %u Megabytes\n", ulValue);775 RTPrintf("Minimum guest RAM size: %u Megabytes\n", ulValue); 776 776 systemProperties->COMGETTER(MaxGuestRAM)(&ulValue); 777 RTPrintf("Maximum guest RAM size: %u Megabytes\n", ulValue); 777 RTPrintf("Maximum guest RAM size: %u Megabytes\n", ulValue); 778 systemProperties->COMGETTER(MinGuestVRAM)(&ulValue); 779 RTPrintf("Minimum video RAM size: %u Megabytes\n", ulValue); 778 780 systemProperties->COMGETTER(MaxGuestVRAM)(&ulValue); 779 RTPrintf("Maximum video RAM size: %u Megabytes\n", ulValue); 781 RTPrintf("Maximum video RAM size: %u Megabytes\n", ulValue); 782 systemProperties->COMGETTER(MinGuestCPUCount)(&ulValue); 783 RTPrintf("Minimum guest CPU count: %u\n", ulValue); 784 systemProperties->COMGETTER(MaxGuestCPUCount)(&ulValue); 785 RTPrintf("Maximum guest CPU count: %u\n", ulValue); 780 786 systemProperties->COMGETTER(MaxVDISize)(&ul64Value); 781 RTPrintf("Maximum VDI size: %lu Megabytes\n", ul64Value); 787 RTPrintf("Maximum VDI size: %lu Megabytes\n", ul64Value); 788 systemProperties->COMGETTER(NetworkAdapterCount)(&ulValue); 789 RTPrintf("Maximum Network Adapter count: %u\n", ulValue); 790 systemProperties->COMGETTER(SerialPortCount)(&ulValue); 791 RTPrintf("Maximum Serial Port count: %u\n", ulValue); 792 systemProperties->COMGETTER(ParallelPortCount)(&ulValue); 793 RTPrintf("Maximum Parallel Port count: %u\n", ulValue); 794 systemProperties->COMGETTER(MaxBootPosition)(&ulValue); 795 RTPrintf("Maximum Boot Position: %u\n", ulValue); 796 systemProperties->GetMaxInstancesOfStorageBus(StorageBus_IDE, &ulValue); 797 RTPrintf("Maximum IDE Controllers: %u\n", ulValue); 798 systemProperties->GetMaxPortCountForStorageBus(StorageBus_IDE, &ulValue); 799 RTPrintf("Maximum IDE Port count: %u\n", ulValue); 800 systemProperties->GetMaxDevicesPerPortForStorageBus(StorageBus_IDE, &ulValue); 801 RTPrintf("Maximum Devices per IDE Port: %u\n", ulValue); 802 systemProperties->GetMaxInstancesOfStorageBus(StorageBus_SATA, &ulValue); 803 RTPrintf("Maximum SATA Controllers: %u\n", ulValue); 804 systemProperties->GetMaxPortCountForStorageBus(StorageBus_SATA, &ulValue); 805 RTPrintf("Maximum SATA Port count: %u\n", ulValue); 806 systemProperties->GetMaxDevicesPerPortForStorageBus(StorageBus_SATA, &ulValue); 807 RTPrintf("Maximum Devices per SATA Port: %u\n", ulValue); 808 systemProperties->GetMaxInstancesOfStorageBus(StorageBus_SCSI, &ulValue); 809 RTPrintf("Maximum SCSI Controllers: %u\n", ulValue); 810 systemProperties->GetMaxPortCountForStorageBus(StorageBus_SCSI, &ulValue); 811 RTPrintf("Maximum SCSI Port count: %u\n", ulValue); 812 systemProperties->GetMaxDevicesPerPortForStorageBus(StorageBus_SCSI, &ulValue); 813 RTPrintf("Maximum Devices per SCSI Port: %u\n", ulValue); 814 systemProperties->GetMaxInstancesOfStorageBus(StorageBus_Floppy, &ulValue); 815 RTPrintf("Maximum Floppy Controllers: %u\n", ulValue); 816 systemProperties->GetMaxPortCountForStorageBus(StorageBus_Floppy, &ulValue); 817 RTPrintf("Maximum Floppy Port count: %u\n", ulValue); 818 systemProperties->GetMaxDevicesPerPortForStorageBus(StorageBus_Floppy, &ulValue); 819 RTPrintf("Maximum Devices per Floppy Port: %u\n", ulValue); 820 systemProperties->COMGETTER(DefaultMachineFolder)(str.asOutParam()); 821 RTPrintf("Default machine folder: %lS\n", str.raw()); 782 822 systemProperties->COMGETTER(DefaultHardDiskFolder)(str.asOutParam()); 783 RTPrintf("Default hard disk folder: %lS\n", str.raw()); 784 systemProperties->COMGETTER(DefaultMachineFolder)(str.asOutParam()); 785 RTPrintf("Default machine folder: %lS\n", str.raw()); 823 RTPrintf("Default hard disk folder: %lS\n", str.raw()); 786 824 systemProperties->COMGETTER(RemoteDisplayAuthLibrary)(str.asOutParam()); 787 RTPrintf("VRDP authentication library: %lS\n", str.raw());825 RTPrintf("VRDP authentication library: %lS\n", str.raw()); 788 826 systemProperties->COMGETTER(WebServiceAuthLibrary)(str.asOutParam()); 789 RTPrintf("Webservice auth. library: %lS\n", str.raw());827 RTPrintf("Webservice auth. library: %lS\n", str.raw()); 790 828 systemProperties->COMGETTER(LogHistoryCount)(&ulValue); 791 RTPrintf("Log history count: %u\n", ulValue);829 RTPrintf("Log history count: %u\n", ulValue); 792 830 793 831 }
Note:
See TracChangeset
for help on using the changeset viewer.