home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d147 / src / headers / key.h < prev    next >
C/C++ Source or Header  |  1988-08-15  |  333b  |  14 lines

  1. /* key.h: Insert file for mg 2 functions that need to reference key pressed */
  2.  
  3. #ifndef EXTERN
  4. #define EXTERN    extern
  5. #endif
  6.  
  7. #define MAXKEY    8            /* maximum number of prefix chars */
  8.  
  9. EXTERN    struct {            /* the chacter sequence in a key */
  10.     int    k_count;        /* number of chars        */
  11.     KCHAR    k_chars[MAXKEY];    /* chars            */
  12. }    key;
  13. #undef    EXTERN
  14.