aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-common.h
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2010-10-08 16:22:10 +0200
committerDavid 'Digit' Turner <digit@android.com>2010-10-08 16:49:41 +0200
commitf59442f0e576abe1f1357135024d44e8bf66a36a (patch)
tree5fc1a850167e0f330ee94e0937688a134b975cd6 /qemu-common.h
parent7746af04f1c7a44253ce49cf7cf1914757faaafe (diff)
downloadexternal_qemu-f59442f0e576abe1f1357135024d44e8bf66a36a.zip
external_qemu-f59442f0e576abe1f1357135024d44e8bf66a36a.tar.gz
external_qemu-f59442f0e576abe1f1357135024d44e8bf66a36a.tar.bz2
Build standalone UI program (emulator-ui).
This changes introduces a new program, called emulator-ui that only contains parts necessary to display the UI (and removes anything related to CPU emulation). This is only a skeleton right now, since it is not capable of launching a core, or displaying anything meaningful, except the skin, trackball, respond to commands (e.g. change layouts with KP-7 and KP-9). Later changes will introduce core launching, communication, etc... Change-Id: Icef9deb8a3a256532655e1cd409b4aab52565d03
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index aba3887..f8db5d4 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -305,4 +305,13 @@ static inline uint8_t from_bcd(uint8_t val)
#endif /* dyngen-exec.h hack */
+typedef enum DisplayType
+{
+ DT_DEFAULT,
+ DT_CURSES,
+ DT_SDL,
+ DT_VNC,
+ DT_NOGRAPHIC,
+} DisplayType;
+
#endif