6261164bd6
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com>
13 lines
243 B
C
13 lines
243 B
C
#include "qemu/osdep.h"
|
|
#include "ui/console.h"
|
|
#include "qapi/error.h"
|
|
|
|
int vnc_display_password(const char *id, const char *password)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
int vnc_display_pw_expire(const char *id, time_t expires)
|
|
{
|
|
return -ENODEV;
|
|
};
|