home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05039b < prev    next >
Text File  |  1990-11-11  |  392b  |  19 lines

  1.  
  2.     typedef struct
  3.         {
  4.         int            type;    /* ButtonPress */
  5.         unsigned long    serial;
  6.         Bool            send_event;
  7.         Display        *display;
  8.         Window        window;
  9.         Window        root;
  10.         Window        subwindow;
  11.         Time            time;
  12.         int            x, y;   /* where the mouse was */
  13.         int            x_root, y_root;
  14.         unsigned int    state;  
  15.         unsigned int    button; /* which button was pressed */
  16.         Bool            same_screen;
  17.         } XButtonEvent;
  18.  
  19.