home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume10 / pcmail2 / part01 / main / screen.c < prev    next >
C/C++ Source or Header  |  1990-01-24  |  2KB  |  56 lines

  1. /*++
  2. /* NAME
  3. /*      screen 3
  4. /* SUMMARY
  5. /*      often-used message strings
  6. /* PROJECT
  7. /*      pc-mail
  8. /* PACKAGE
  9. /*      mail
  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. /*    90/01/22 13:02:34
  27. /* VERSION/RELEASE
  28. /*    2.1
  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 anykey[]    = "Press any key to continue";
  37. public char initscreen[]= "Return to initial screen";
  38. public char prevscreen[]= "Return to previous screen";
  39. public char int_error[]    = "The program is confused";
  40. public char pageup[]    = "Move screen one page upwards";
  41. public char pagedn[]    = "Move screen one page downwards";
  42. public char csrup[]    = "Move cursor upwards";
  43. public char csrdn[]    = "Move cursor downwards";
  44. public char getsummary[]= "Press ESC to cancel. Enter a one-line summary for identification:";
  45. public char getaddr[]    = "Press ESC to cancel. Send message to:";
  46. public char printcurr[]    = "Print this message";
  47. public char delcurr[]    = "Delete this message";
  48.  
  49. /* we have a problem reading a mail message */
  50.  
  51. public char *m_msgread[] = {
  52.     "",
  53.     "Sorry, that message is no longer available",
  54.     0,
  55. };
  56.