home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / TEL23SRC.ZIP / INCLUDE / MAP_OUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-17  |  1.6 KB  |  37 lines

  1. /*
  2. *    map_out.h
  3. *  Used for Character output mapping things
  4. ****************************************************************************
  5. *                                                                          *
  6. *                                                                          *
  7. *      NCSA Telnet                                                         *
  8. *      by Tim Krauskopf, VT100 by Gaige Paulsen, Tek by Aaron Contorer     *
  9. *            Additions by Kurt Mahan, Heeren Pathak, & Quincey Koziol       *
  10. *                                                                          *
  11. *      National Center for Supercomputing Applications                     *
  12. *      152 Computing Applications Building                                 *
  13. *      605 E. Springfield Ave.                                             *
  14. *      Champaign, IL  61820                                                *
  15. *                                                                          *
  16. ****************************************************************************
  17. *    Quincey Koziol
  18. *   Defines for output character mapping variables
  19. */
  20.  
  21. #ifndef MAP_OUT_H
  22.  
  23. #ifdef OUTPUTMASTER
  24. /* array of unsigned chars which are really used as a translation table for */
  25. /*    characters that are output while output mapping is on */
  26. unsigned char outputtable[256];
  27.  
  28. #else
  29. /* array of unsigned chars which are really used as a translation table for */
  30. /*    characters that are output while output mapping is on */
  31. extern unsigned char outputtable[256];
  32.  
  33. #endif
  34.  
  35. #define MAP_OUT_H
  36. #endif    /* map_out.h */
  37.