mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
ui/vc: rename kbd_put to qemu_text_console functions
They are QemuTextConsole functions, let's make it clear. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
f5360a0d28
commit
cc6ba2c6f5
8 changed files with 43 additions and 43 deletions
|
@ -112,9 +112,9 @@ bool qemu_mouse_set(int index, Error **errp);
|
|||
#define QEMU_KEY_CTRL_PAGEUP 0xe406
|
||||
#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
|
||||
|
||||
void kbd_put_keysym_console(QemuTextConsole *s, int keysym);
|
||||
bool kbd_put_qcode_console(QemuTextConsole *s, int qcode, bool ctrl);
|
||||
void kbd_put_string_console(QemuTextConsole *s, const char *str, int len);
|
||||
void qemu_text_console_put_keysym(QemuTextConsole *s, int keysym);
|
||||
bool qemu_text_console_put_qcode(QemuTextConsole *s, int qcode, bool ctrl);
|
||||
void qemu_text_console_put_string(QemuTextConsole *s, const char *str, int len);
|
||||
|
||||
/* Touch devices */
|
||||
typedef struct touch_slot {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue