mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
libqemustub: add more stubs for qemu-char
Additional stubs: - chr_baum_init - qemu_chr_open_spice_vmc - qemu_chr_open_spice_port Signed-off-by: Nikolay Nikolaev <n.nikolaev@virtualopensystems.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
8f4e5ac3e2
commit
1dc75c6d74
3 changed files with 23 additions and 0 deletions
14
stubs/qemu-chr-open-spice.c
Normal file
14
stubs/qemu-chr-open-spice.c
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "qemu-common.h"
|
||||
#include "ui/qemu-spice.h"
|
||||
|
||||
CharDriverState *qemu_chr_open_spice_vmc(const char *type)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#if SPICE_SERVER_VERSION >= 0x000c02
|
||||
CharDriverState *qemu_chr_open_spice_port(const char *name)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue