comparison 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
comparison
equal deleted inserted replaced
208:f427b8ec4379 209:41ff10fd062f
369 # include <X11/Xlib.h> 369 # include <X11/Xlib.h>
370 #endif 370 #endif
371 371
372 union magic_data 372 union magic_data
373 { 373 {
374 char underlying_tty_event; 374 #ifdef HAVE_TTY
375 char underlying_tty_event;
376 #endif
375 #ifdef HAVE_X_WINDOWS 377 #ifdef HAVE_X_WINDOWS
376 XEvent underlying_x_event; 378 XEvent underlying_x_event;
379 #endif
380 #ifdef HAVE_W32GUI /* XXX FIXME */
381 struct
382 {
383 int message;
384 unsigned long data[4]; /* XXX Big enough for biggest thing? */
385 } underlying_w32_event;
377 #endif 386 #endif
378 }; 387 };
379 388
380 struct Lisp_Event 389 struct Lisp_Event
381 { 390 {