home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 156.lha / MicroGnuEmacs_v2.0 / Sources / headers / key.h < prev    next >
C/C++ Source or Header  |  1988-04-27  |  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.