home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1680 / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-28  |  290 b   |  14 lines

  1. /*
  2.  *    parse.h - George Ferguson, ferguson@cs.rochester.edu, 1 Jun 1990.
  3.  *
  4.  *    $Id: parse.h,v 1.1 90/08/15 10:22:42 ferguson Exp $
  5.  */
  6.  
  7. typedef struct eventListStruct {
  8.     XEvent event;
  9.     long count;
  10.     struct eventListStruct *next;
  11. } EventListElem,*EventListPtr;
  12.  
  13. extern char *parseEventList();
  14.