mirror of https://github.com/xqemu/xqemu.git
move GUI_REFRESH_INTERVAL define from vl.c to console.h (Gerd Hoffmann)
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5058 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
62a6e3e19a
commit
7ed9eba384
|
@ -9,6 +9,9 @@
|
||||||
#define MOUSE_EVENT_RBUTTON 0x02
|
#define MOUSE_EVENT_RBUTTON 0x02
|
||||||
#define MOUSE_EVENT_MBUTTON 0x04
|
#define MOUSE_EVENT_MBUTTON 0x04
|
||||||
|
|
||||||
|
/* in ms */
|
||||||
|
#define GUI_REFRESH_INTERVAL 30
|
||||||
|
|
||||||
typedef void QEMUPutKBDEvent(void *opaque, int keycode);
|
typedef void QEMUPutKBDEvent(void *opaque, int keycode);
|
||||||
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
||||||
|
|
||||||
|
|
2
vl.c
2
vl.c
|
@ -154,8 +154,6 @@ int inet_aton(const char *cp, struct in_addr *ia);
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_RAM_SIZE 128
|
#define DEFAULT_RAM_SIZE 128
|
||||||
#endif
|
#endif
|
||||||
/* in ms */
|
|
||||||
#define GUI_REFRESH_INTERVAL 30
|
|
||||||
|
|
||||||
/* Max number of USB devices that can be specified on the commandline. */
|
/* Max number of USB devices that can be specified on the commandline. */
|
||||||
#define MAX_USB_CMDLINE 8
|
#define MAX_USB_CMDLINE 8
|
||||||
|
|
Loading…
Reference in New Issue