diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-03-13 12:21:14 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-06 08:38:05 +0200 |
commit | b7fb49f0c709a406f79372be397367ff2550373b (patch) | |
tree | 2faae9d7306717c52edbb59641547c2c4f066cce /include/ui | |
parent | cf1ecc82ab84dbfb4b6eea02c329bf9c2aa856ec (diff) | |
download | qemu-b7fb49f0c709a406f79372be397367ff2550373b.zip |
console: add dpy_ui_info_supported
Allow ui code to check whenever the emulated
display supports display change notifications.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/console.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ui/console.h b/include/ui/console.h index 0b7589600b..e8b3a9ea8d 100644 --- a/include/ui/console.h +++ b/include/ui/console.h @@ -228,6 +228,7 @@ void update_displaychangelistener(DisplayChangeListener *dcl, uint64_t interval); void unregister_displaychangelistener(DisplayChangeListener *dcl); +bool dpy_ui_info_supported(QemuConsole *con); int dpy_set_ui_info(QemuConsole *con, QemuUIInfo *info); void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h); |