home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / Editors / mjovesrc.zoo / addspeky.txt < prev    next >
Text File  |  1991-10-20  |  623b  |  20 lines

  1. to add special key support, the following must be done:
  2.  
  3. 1.  add routine to analyze scan code from Bconin(), increment all
  4.     special keys to invalid ascii values, just over the valid value range.
  5.     This will entail going through the manipulations MS-DOS has to.
  6.     See getch.c for the basic procedure.
  7. 2.  increase NCHARS (in "sysdep.h") by 60 (40 Fkeys + additional 20
  8.     speckeys and alt & control combinations).
  9.  
  10. #ifdef MiNT
  11. #define SPECKY 1
  12. #ifdef NCHARS
  13. #undef NCHARS
  14. #endif /* NCHARS */
  15. #define NCHARS 0274
  16. #endif /* MiNT */
  17.  
  18. 3.  rework the bindings tables in keys.txt to handle the additional
  19.     60 bindings.
  20.