home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / SCRNMS.ZIP / README < prev    next >
Text File  |  1990-03-15  |  4KB  |  83 lines

  1.                      Screen and Data Acquisition Library
  2.        Copyright (c) 1990, Chris Laforet Software.  All Rights Reserved.
  3.        ----------------------------------------------------------------
  4.  
  5. This is a shareware release of some library functions which I have been 
  6. using over the past few years.  Having been urged by a number of friends to
  7. release them, I have finally given in.
  8.  
  9. These libraries are meant to provide low to medium access to text screen
  10. and data acquisition for the serious C programmer.  I was faced with the many
  11. decisions insofar as screen libraries were concerned and decided to write my
  12. own since the ones on the market had quite a high overhead.  Of course, in
  13. many cases there are many varied functions in those commercial libraries
  14. but at what cost?  I have yet to find an application for which my libraries
  15. were inadequate.  Many fast applications have been developed and tested with
  16. them over the past years.
  17.  
  18. It is my desire that you will find these routines helpful in your work.  If
  19. you do, PLEASE REGISTER YOUR COPY AND PAY FOR IT.  To do this, print out the
  20. accompanying file REGISTER.DOC and fill in the relevant information.  Submit
  21. it along with your check or money order.  It is only by your honesty that I 
  22. can continue to support and develop new functions for these libraries.
  23.  
  24. You are granted a limited licence to use these routines for a period of no 
  25. longer than 30 days so that you can determine if you have use for them.  After
  26. this period, you should register and receive a new copy of the libraries
  27. without the annoying message and copyright notice.  Tampering and/or removing
  28. the copyright notice on non-registered versions is strictly forbidden.
  29.  
  30. There are no warranties of any kind on these routines.  The author and
  31. copyright holder are not liable for damages or loss of profits arising from
  32. the use of these routines.  The user assumes full responsibility and uses 
  33. the routines at their own risk.
  34.  
  35. The libraries come in three different trims.  SCRNMSC.ZIP contains the 
  36. libraries and header files for Microsoft C under DOS and OS/2.  SCRNZTC.ZIP
  37. contains the libraries and header files for Zortech C (and C++) under DOS
  38. and OS/2.  SCRNTC.ZIP contains the library and header files for Turbo C under
  39. DOS.
  40.  
  41. To install the libraries, copy the header (*.h) files to your regular include
  42. directory.  Copy the library (*.lib) file(s) to your regular library 
  43. directory.  The documentation files contain most of what you need to know 
  44. about the library functions.
  45.  
  46. There is a senseless test routine called TEST.C included in the archives.
  47. To compile the routine, use the following:
  48.  
  49. In MSC/DOS:  cl -AL -Zp1 test.c
  50. In MSC/OS/2: cl -AL -Zp1 -Lp -DPROTECTED test.c -link doscalls
  51. In ZTC/DOS:  ztc -ml -a test.c lscreen.lib leditor.lib
  52. In ZTC/OS/2: ztc -ml -a -DPROTECTED test.c lscreenp.lib leditorp.lib 
  53.                   doscalls.lib
  54. In TC/DOS:   tcc -ml test.c lscreen.lib leditor.lib
  55.  
  56. The Microsoft compiler picks up its library information from the #pragma 
  57. comment(lib,"") statements in the header files.
  58.  
  59. If you have difficulties, make sure that you are using LARGE model to compile
  60. your programs.  If that is not the problem, make sure that you are BYTE-
  61. ALIGNING structures (-Zp1 flag on MSC and -a flag on ZTC).
  62.  
  63. What if you still have difficulties?  While it is hard to support unregistered 
  64. users, if you encounter exceptional difficulties, you may get into contact 
  65. with me through any of the following means:
  66.  
  67. Compuserve EasyPlex:  User No: 76120,110
  68.  
  69. BIX:                  User ID: Laforet
  70.  
  71. GEnie:                User No: XTX74591
  72.  
  73. FidoNet Mail:         Chris Laforet at 1:151/402
  74.  
  75. US Mail:              Chris Laforet Software, 
  76.                       511-D Poplar St, 
  77.                       Graham NC 27253.
  78.  
  79. or through my BBS:    The Programmer's Oasis BBS
  80.                       919/226-6984 -- 24 hours a day
  81.                       HST,2400,1200,300-N-8-1
  82.  
  83.