home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / beehive / utilitys / swdemo15.arc / CDINTRO1.C < prev    next >
Text File  |  1991-08-11  |  2KB  |  45 lines

  1. /********************************************************
  2.  
  3. File: CDINTRO1.C
  4. Use:  Ascii of page 1 of the introduction
  5.       Eugene Nolan
  6.       Copyright 1989, All rights reserved
  7.  
  8. ********************************************************/
  9.  
  10. /* For a definition of the different codes seen here, please see
  11.    CDEMODAT.C file */
  12.  
  13.  
  14. char *intro1[]= {
  15. "\033G\034\376\033F\007SWIND Windowing Library\033F\376",
  16. "\033G\042\001Eugene Nolan",
  17. "\033G\041\002Copyright 1989\n\r",
  18. "\033F\007Swind\033F\376",
  19. "\011is a small/fast/portable set of dynamic windowing system library\n\r",
  20. "\011routines for micro/mini and mainframe computers.\n\r",
  21. "\033F\007Swind\033F\376",
  22. "\011is written mainly in 'C', with a few critical routines coded in\n\r",
  23. "\011assembler (for Z80 and IBM-PC and compats) to provide a very high level\n\r",
  24. "\011of performance. A very simple call/return syntac for assembler to 'C'\n\r",
  25. "\011interface is provided.\n\r",
  26. "\033F\007Swind\033F\376",
  27. "\011provides a developer a 'virtual' display interface. This means that\n\r",
  28. "\011it provides a fixed instruction set for display type interactions of\n\r",
  29. "\011cursor move/attributes/ins,del line/scroll up,down/erase bol,eol.\n\r",
  30. "\011This provides COMPLETE portablity for a wide range of systems when\n\r",
  31. "\011applications are written in a high level language.\n\r",
  32. "\033F\007Swind\033F\376",
  33. "\011requires no special terminal capabilities. All it requires is the\n\r",
  34. "\011ability to clear the screen and position the cursor. If attributes\n\r",
  35. "\011are available, it will use them, but they are not required.\n\r",
  36. "\033F\007Swind\033F\376",
  37. "\011interfaces to the display thru a 'dependence' routine. It is in this\n\r",
  38. "\011that the actual display is done. For vanilla CPM, an imbedded TCAP\n\r",
  39. "\011is used, and for Z3 systems, the system TCAP is referenced. For IBM PC\n\r",
  40. "\011it is here that the mono/CGA/EGA is accounted for. For applications\n\r",
  41. "\011on other systems, or thru the serial ports of a PC, this routine must\n\r",
  42. "\011account for terminal characteristics. A template for an ANSI device is\n\r",
  43. "\011provided.         \033F\007Any key to continue\033F\376\377"
  44. };
  45.