From: Eduardo Habkost Date: Tue, 19 Apr 2016 19:55:27 +0000 (-0300) Subject: vl: Move DisplayType typedef to vl.c X-Git-Tag: v2.7.0-rc0~176^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0cb48c4678af6e1fedbb48c52e5baa01f7266f54;p=thirdparty%2Fqemu.git vl: Move DisplayType typedef to vl.c Now the type is only used inside vl.c and doesn't need to be in a header file. Signed-off-by: Eduardo Habkost --- diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h index 7e9f93ebb18..618169c4d5f 100644 --- a/include/sysemu/sysemu.h +++ b/include/sysemu/sysemu.h @@ -131,16 +131,6 @@ void qemu_savevm_send_postcopy_ram_discard(QEMUFile *f, const char *name, int qemu_loadvm_state(QEMUFile *f); -typedef enum DisplayType -{ - DT_DEFAULT, - DT_CURSES, - DT_SDL, - DT_COCOA, - DT_GTK, - DT_NONE, -} DisplayType; - extern int autostart; typedef enum { diff --git a/vl.c b/vl.c index 0d10ceb0116..aaf9134f726 100644 --- a/vl.c +++ b/vl.c @@ -2077,6 +2077,15 @@ static void select_vgahw(const char *p) } } +typedef enum DisplayType { + DT_DEFAULT, + DT_CURSES, + DT_SDL, + DT_COCOA, + DT_GTK, + DT_NONE, +} DisplayType; + static DisplayType select_display(const char *p) { const char *opts;