diff options
author | Amos Kong <akong@redhat.com> | 2012-08-31 10:56:26 +0800 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-09-05 15:48:57 -0300 |
commit | e4c8f004c55d9da3eae3e14df740238bf805b5d6 (patch) | |
tree | 15dfdb6d109c4d093fa08e4f7fa79bfbaf29c6b1 /console.h | |
parent | 1048c88f03545fa42bdebb077871a743a614d2ab (diff) | |
download | hqemu-e4c8f004c55d9da3eae3e14df740238bf805b5d6.zip hqemu-e4c8f004c55d9da3eae3e14df740238bf805b5d6.tar.gz |
qapi: convert sendkey
Convert 'sendkey' to use QAPI.
QAPI passes key's index of mapping table to qmp_send_key(),
not keycode. So we use help functions to convert key/code to
index of key_defs, and 'index' will be converted to 'keycode'
inside qmp_send_key().
For qmp, QAPI would check invalid key and raise error.
For hmp, invalid key is checked in hmp_send_key().
'send-key' of QMP doesn't support key in hexadecimal format.
Signed-off-by: Amos Kong <akong@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'console.h')
-rw-r--r-- | console.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -399,7 +399,6 @@ static inline int vnc_display_pw_expire(DisplayState *ds, time_t expires) void curses_display_init(DisplayState *ds, int full_screen); /* input.c */ -extern const int key_defs[]; int index_from_key(const char *key); int index_from_keycode(int code); |