From f59442f0e576abe1f1357135024d44e8bf66a36a Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Fri, 8 Oct 2010 16:22:10 +0200 Subject: 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 --- qemu-common.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'qemu-common.h') 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 -- cgit v1.1