home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume3 / pcmail / part07 / screen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  1.4 KB  |  53 lines

  1. /*++
  2. /* NAME
  3. /*      screen 3
  4. /* SUMMARY
  5. /*      often-used message strings
  6. /* PROJECT
  7. /*      pc-mail
  8. /* PACKAGE
  9. /*      mailsh
  10. /* SYNOPSIS
  11. /*      #include "screen.h"
  12. /* DESCRIPTION
  13. /*      Messages and strings used in more than one Screen structure
  14. /*    are kept here.
  15. /* SEE ALSO
  16. /*      screen(5)       screen table structure
  17. /*      kbdinp(3)      screen table interpreter
  18. /* AUTHOR(S)
  19. /*      W.Z. Venema
  20. /*      Eindhoven University of Technology
  21. /*      Department of Mathematics and Computer Science
  22. /*      Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  23. /* CREATION DATE
  24. /*      Wed Apr  1 21:14:53 GMT+1:00 1987
  25. /* LAST MODIFICATION
  26. /*    Mon Apr  4 23:48:45 MET 1988
  27. /* VERSION/RELEASE
  28. /*    1.3
  29. /*--*/
  30.  
  31. #include "defs.h"
  32. #include "screen.h"
  33.  
  34. /* general strings used in more than one Screen structure */
  35.  
  36. public char initscreen[]= "Return to initial screen";
  37. public char int_error[]    = "The program is confused";
  38. public char pageup[]    = "Move screen one page upwards";
  39. public char pagedn[]    = "Move screen one page downwards";
  40. public char csrup[]    = "Move cursor upwards";
  41. public char csrdn[]    = "Move cursor downwards";
  42. public char getsummary[]= "Press ESC to cancel. Enter a one-line summary for identification:";
  43. public char printcurr[]    = "Print this message";
  44. public char delcurr[]    = "Delete this message";
  45.  
  46. /* we have a problem reading a mail message */
  47.  
  48. public char *m_msgread[] = {
  49.     "",
  50.     "Sorry, I have a problem reading that message",
  51.     0,
  52. };
  53.