Commit 9155fc45993757d5201b27fd8a57dfd28258123b
1 parent
54ae1fbd
monitor: add sendkey support for comma, dot and slash
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5384 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
0 deletions
monitor.c
| @@ -860,6 +860,9 @@ static const KeyDef key_defs[] = { | @@ -860,6 +860,9 @@ static const KeyDef key_defs[] = { | ||
| 860 | { 0x30, "b" }, | 860 | { 0x30, "b" }, |
| 861 | { 0x31, "n" }, | 861 | { 0x31, "n" }, |
| 862 | { 0x32, "m" }, | 862 | { 0x32, "m" }, |
| 863 | + { 0x33, "comma" }, | ||
| 864 | + { 0x34, "dot" }, | ||
| 865 | + { 0x35, "slash" }, | ||
| 863 | 866 | ||
| 864 | { 0x37, "asterisk" }, | 867 | { 0x37, "asterisk" }, |
| 865 | 868 |