home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 320.lha / HPIIc / hpsrc / prog_codes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-05  |  479 b   |  17 lines

  1. /* There are 6 different ways in which program lines are displayed. cf io.c */
  2. #define ONECODE 0
  3. #define TWOCODE 1
  4. #define TWOCODE_9 2
  5. #define TWOCODE_PT 3
  6. #define THREECODE 4
  7. #define THREECODE_PT 5
  8.  
  9. struct KeyCode {
  10.    BYTE Type; /* The display method */
  11.    BYTE c1, c2, c3; /* The codes to display */
  12. };
  13.  
  14. /* This array is indexed by the instruction code (from codes.h). Therefore, if
  15.   that file is changed, the codes must also be changed. */
  16. extern struct KeyCode keycodes[];
  17.