Changeset 47991 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
- Timestamp:
- Aug 22, 2013 2:31:52 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88315
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r47908 r47991 824 824 CHECK_ERROR(systemProperties, COMSETTER(DefaultMachineFolder)(Bstr(a->argv[1]).raw())); 825 825 } 826 else if (!strcmp(a->argv[0], "hwvirtexclusive")) 827 { 828 bool fHwVirtExclusive; 829 830 if (!strcmp(a->argv[1], "on")) 831 fHwVirtExclusive = true; 832 else if (!strcmp(a->argv[1], "off")) 833 fHwVirtExclusive = false; 834 else 835 return errorArgument("Invalid hwvirtexclusive argument '%s'", a->argv[1]); 836 CHECK_ERROR(systemProperties, COMSETTER(ExclusiveHwVirt)(fHwVirtExclusive)); 837 } 826 838 else if ( !strcmp(a->argv[0], "vrdeauthlibrary") 827 839 || !strcmp(a->argv[0], "vrdpauthlibrary"))
Note:
See TracChangeset
for help on using the changeset viewer.