mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
gtk: Initialization stubs
This reduces the number of CONFIG_GTK #ifdefs in vl.c. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
e35ee7c1aa
commit
19a2c6269f
2 changed files with 18 additions and 6 deletions
|
@ -506,7 +506,24 @@ static inline void curses_display_init(DisplayState *ds, int full_screen)
|
|||
int index_from_key(const char *key, size_t key_length);
|
||||
|
||||
/* gtk.c */
|
||||
#ifdef CONFIG_GTK
|
||||
void early_gtk_display_init(int opengl);
|
||||
void gtk_display_init(DisplayState *ds, bool full_screen, bool grab_on_hover);
|
||||
#else
|
||||
static inline void gtk_display_init(DisplayState *ds, bool full_screen,
|
||||
bool grab_on_hover)
|
||||
{
|
||||
/* This must never be called if CONFIG_GTK is disabled */
|
||||
error_report("GTK support is disabled");
|
||||
abort();
|
||||
}
|
||||
|
||||
static inline void early_gtk_display_init(int opengl)
|
||||
{
|
||||
/* This must never be called if CONFIG_GTK is disabled */
|
||||
error_report("GTK support is disabled");
|
||||
abort();
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue