- Timestamp:
- May 16, 2013 8:23:06 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r45156 r46116 537 537 systemProperties->COMGETTER(MaxGuestVRAM)(&ulValue); 538 538 RTPrintf("Maximum video RAM size: %u Megabytes\n", ulValue); 539 systemProperties->COMGETTER(MaxGuestMonitors)(&ulValue); 540 RTPrintf("Maximum guest monitor count: %u\n", ulValue); 539 541 systemProperties->COMGETTER(MinGuestCPUCount)(&ulValue); 540 542 RTPrintf("Minimum guest CPU count: %u\n", ulValue); … … 593 595 systemProperties->GetMaxDevicesPerPortForStorageBus(StorageBus_Floppy, &ulValue); 594 596 RTPrintf("Maximum Devices per Floppy Port: %u\n", ulValue); 597 #if 0 598 systemProperties->GetFreeDiskSpaceWarning(&i64Value); 599 RTPrintf("Free disk space warning at: %u Bytes\n", i64Value); 600 systemProperties->GetFreeDiskSpacePercentWarning(&ulValue); 601 RTPrintf("Free disk space warning at: %u %%\n", ulValue); 602 systemProperties->GetFreeDiskSpaceError(&i64Value); 603 RTPrintf("Free disk space error at: %u Bytes\n", i64Value); 604 systemProperties->GetFreeDiskSpacePercentError(&ulValue); 605 RTPrintf("Free disk space error at: %u %%\n", ulValue); 606 #endif 595 607 systemProperties->COMGETTER(DefaultMachineFolder)(str.asOutParam()); 596 608 RTPrintf("Default machine folder: %ls\n", str.raw()); 609 systemProperties->GetDefaultHardDiskFormat(str.asOutParam()); 610 RTPrintf("Default hard disk format: %ls\n", str.raw()); 597 611 systemProperties->COMGETTER(VRDEAuthLibrary)(str.asOutParam()); 598 612 RTPrintf("VRDE auth library: %ls\n", str.raw()); … … 603 617 systemProperties->COMGETTER(LogHistoryCount)(&ulValue); 604 618 RTPrintf("Log history count: %u\n", ulValue); 619 systemProperties->COMGETTER(DefaultFrontend)(str.asOutParam()); 620 RTPrintf("Default frontend: %ls\n", str.raw()); 605 621 systemProperties->COMGETTER(AutostartDatabasePath)(str.asOutParam()); 606 622 RTPrintf("Autostart database path: %ls\n", str.raw());
Note:
See TracChangeset
for help on using the changeset viewer.