Changeset 14108 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 11, 2008 7:33:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39180
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r13964 r14108 447 447 " acpipowerbutton|acpisleepbutton|\n" 448 448 " keyboardputscancode <hex> [<hex> ...]|\n" 449 " injectnmi|\n" 449 450 " setlinkstate<1-4> on|off |\n" 450 451 " usbattach <uuid>|<address> |\n" … … 5808 5809 CHECK_ERROR_BREAK (console, SleepButton()); 5809 5810 } 5811 else if (strcmp(argv[1], "injectnmi") == 0) 5812 { 5813 /* get the machine debugger. */ 5814 ComPtr <IMachineDebugger> debugger; 5815 CHECK_ERROR_BREAK(console, COMGETTER(Debugger)(debugger.asOutParam())); 5816 CHECK_ERROR_BREAK(debugger, InjectNMI()); 5817 } 5810 5818 else if (strcmp(argv[1], "keyboardputscancode") == 0) 5811 5819 {
Note:
See TracChangeset
for help on using the changeset viewer.