diff src/events.h @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents acd284d43ca1
children 78f53ef88e17
line wrap: on
line diff
--- a/src/events.h	Mon Aug 13 10:03:54 2007 +0200
+++ b/src/events.h	Mon Aug 13 10:04:58 2007 +0200
@@ -371,9 +371,18 @@
 
 union magic_data
 {
-  char             underlying_tty_event;
+#ifdef HAVE_TTY
+  char		    underlying_tty_event;
+#endif
 #ifdef HAVE_X_WINDOWS
-  XEvent           underlying_x_event;
+  XEvent	    underlying_x_event;
+#endif
+#ifdef HAVE_W32GUI  /* XXX FIXME */
+  struct
+    {
+      int	    message;
+      unsigned long data[4]; /* XXX Big enough for biggest thing? */
+    } underlying_w32_event;
 #endif
 };