diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-03-13 12:25:25 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 09:03:48 +0200 |
commit | 27be55872dd747c733a42a3d90864d9f59272d26 (patch) | |
tree | b1243a8e39316783b53d21d4baa44c957d1f2496 /ui/console.c | |
parent | 98a9ad9082284df62fb5b9355dd1901639de8268 (diff) | |
download | qemu-27be55872dd747c733a42a3d90864d9f59272d26.tar.gz qemu-27be55872dd747c733a42a3d90864d9f59272d26.tar.bz2 qemu-27be55872dd747c733a42a3d90864d9f59272d26.zip |
console: make DisplayState private to console.c
With gui_* being moved to console.c nobody outside console.c needs
access to DisplayState fields any more. Make the struct private.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/console.c')
-rw-r--r-- | ui/console.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/console.c b/ui/console.c index b618221151..07fba67f79 100644 --- a/ui/console.c +++ b/ui/console.c @@ -157,6 +157,14 @@ struct QemuConsole { QEMUTimer *kbd_timer; }; +struct DisplayState { + struct QEMUTimer *gui_timer; + bool have_gfx; + bool have_text; + + QLIST_HEAD(, DisplayChangeListener) listeners; +}; + static DisplayState *display_state; static QemuConsole *active_console; static QemuConsole *consoles[MAX_CONSOLES]; |