blob: 7c9ec1a069e1321170d8b0c395647b705f9da8e3 [file] [log] [blame]
#ifndef DBUS_DISPLAY_H
#define DBUS_DISPLAY_H
#include "qapi/error.h"
#include "ui/dbus-module.h"
static inline bool qemu_using_dbus_display(Error **errp)
{
if (!using_dbus_display) {
error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
"D-Bus display is not in use");
return false;
}
return true;
}
#endif /* DBUS_DISPLAY_H */