home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 287.lha / TY_v1.3 / src / screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-07  |  987 b   |  28 lines

  1. /*************************************************************************
  2.  ***                        screen.h                     (JJB TEMPLAR) ***
  3.  *** Date begun: 26/8/89.                                              ***
  4.  *** Last modified: 26/8/89.                                           ***
  5.  *************************************************************************/
  6. /*** Ha. Now you see it, now you don't...                              ***
  7.  *************************************************************************/
  8.  
  9. extern char sc_lower_left[10];
  10.  
  11. extern char sc_addline[];
  12. extern char sc_u_in[];
  13. extern char sc_out[];
  14.  
  15. #define add_line()      tputs(sc_addline)
  16. #define lower_left()    tputs(sc_lower_left)
  17. #define ul_enter()      tputs(sc_u_in)
  18. #define ul_exit()       tputs(sc_out)
  19.  
  20. /* Users:   (so you know who to update)
  21.  *     prim.c
  22.  *     suppcom.c
  23.  *     help.c
  24.  *     output.c
  25.  * Miscellaneous:
  26.  *     home() and clear() are real functions.
  27.  **********************/
  28.