e99441a379
ui/curses is the only user of console_select(). Move the implementation to ui/curses. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20240319-console-v2-4-3fd6feef321a@daynix.com>
34 lines
534 B
C
34 lines
534 B
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* QEMU VC stubs
|
|
*/
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qapi/error.h"
|
|
#include "qemu/error-report.h"
|
|
#include "qemu/option.h"
|
|
#include "chardev/char.h"
|
|
#include "ui/console-priv.h"
|
|
|
|
void qemu_text_console_update_size(QemuTextConsole *c)
|
|
{
|
|
}
|
|
|
|
const char *
|
|
qemu_text_console_get_label(QemuTextConsole *c)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void qemu_text_console_update_cursor(void)
|
|
{
|
|
}
|
|
|
|
void qemu_text_console_handle_keysym(QemuTextConsole *s, int keysym)
|
|
{
|
|
}
|
|
|
|
void qemu_console_early_init(void)
|
|
{
|
|
}
|