diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-04-19 16:55:27 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-05-20 14:28:54 -0300 |
commit | 0cb48c4678af6e1fedbb48c52e5baa01f7266f54 (patch) | |
tree | db876acabf089e903809c0483b0882202f1f2db7 /vl.c | |
parent | d29345d011114b90f0a6871fb0d46a7741c6c33c (diff) |
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 <ehabkost@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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; |