home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TPMUL330.ZIP / MULAWARE.DOC < prev    next >
Encoding:
Text File  |  1992-10-02  |  5.7 KB  |  296 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.                      MulAware (MultiTasker Aware) 3.30
  20.  
  21.             Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  22.  
  23.                      Designed & Written by Jack Ridgway
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.                                    Page 1
  58.  
  59.      MulAware 3.30 Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  60.  
  61.  
  62.  
  63.  
  64.    CONTENTS
  65.  
  66.      Disclaimer .....................................................  3
  67.  
  68.      Freeware Agreement .............................................  3
  69.  
  70.      Distribution Archive Contents ..................................  3
  71.  
  72.      What is MulAware ...............................................  3
  73.  
  74.      How to Use MulAware ............................................  4
  75.  
  76.      Registration ...................................................  4
  77.  
  78.      Technical Support ..............................................  5
  79.  
  80.      Acknowledements ................................................  5
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.                                    Page 2
  117.  
  118.      MulAware 3.30 Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  119.  
  120.  
  121.  
  122.  
  123.    DISCLAIMER
  124.  
  125.      Users of MulAware must accept this disclaimer of warranty:
  126.      "MulAware is supplied as is.  The author disclaims all warranties,
  127.      expressed or implied, including, without limitation, the warranties
  128.      of merchantability and of fitness for any purpose.  The author
  129.      assumes no liability for damages, direct or consequential, which
  130.      may result from the use of MulAware."
  131.  
  132.  
  133.    FREEWARE AGREEMENT
  134.  
  135.      MulAware is a "freeware program" and is provided at no charge to
  136.      the user.  Feel free to share it with your friends, but please do
  137.      not give it away altered or as part of another system.  MulAware
  138.      may NOT be used in a commercial environment without purchasing the
  139.      source code from A.B.S.  A BBS operated for profit IS a commercial
  140.      environment; however, a subscription system not operated for profit
  141.      is not considered a commercial environment in relation to this
  142.      agreement.
  143.  
  144.      Anyone distributing MulAware for any kind of remuneration must
  145.      first contact A.B.S. at the address below for authorization.  This
  146.      authorization will be automatically granted to distributors
  147.      recognized by the (ASP) as adhering to its guidelines for shareware
  148.      distributors, and such distributors may begin offering MulAware
  149.      immediately; however, A.B.S. must still be advised so that the
  150.      distributor can be kept up-to-date with the latest version of
  151.      MulAware.
  152.  
  153.  
  154.    DISTRIBUTION ARCHIVE CONTENTS
  155.  
  156.      You will find the following files in TPMUL310.*
  157.  
  158.        MULAWARE.TPU - TP 6.0 MulAware Unit
  159.        MULAWARE.DOC - MulAware Documentation
  160.        MULAWARE.INT - Interface and Documentation on Using MulAware
  161.        MULTEST.PAS  - Source Code for MulTest
  162.        REGISTER.FRM - A.B.S. Registration Form
  163.        FILE_ID.DIZ  - BBS Description of MulAware
  164.  
  165.  
  166.    WHAT IS MulAware?
  167.  
  168.      MulAware is a Turbo Pascal 6.0 Unit to make your programs fully
  169.      MultiTasker Aware.
  170.  
  171.  
  172.  
  173.  
  174.  
  175.                                    Page 3
  176.  
  177.      MulAware 3.30 Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  178.  
  179.  
  180.  
  181.  
  182.      MulAware currently supports the following multitaskers:
  183.  
  184.      Windows 3.x
  185.      DESQview 2.xx
  186.      DoubleDOS
  187.      VMiX 2.xx
  188.      MultiDos Plus 4.xx
  189.      OS/2 1.3 and 2.0
  190.      DOS 5.0 Task Switcher and Compatibles
  191.      TaskView, TopView, OmniView, & Compatibles
  192.  
  193.  
  194.    HOW TO USE MulAware
  195.  
  196.      Since this is a programmer's tool, I'm going to assume you have
  197.      decent knowledge of computers in general, and Turbo Pascal in
  198.      particular.  Simply place MulAware in your USES statement.
  199.  
  200.      USES
  201.        Crt,
  202.        MulAware,
  203.        Dos;
  204.  
  205.      See the enclosed MULAWARE.INT for complete documentation on the
  206.      Types, Variables, Functions, and Procedures in MulAware.
  207.  
  208.      The enclosed MULTEST.PAS is a sample program that tests for all
  209.      the supported multitaskers, and returns an errorlevel based on
  210.      what it finds.
  211.  
  212.  
  213.    REGISTRATION
  214.  
  215.      MulAware is distributed as FreeWare.  This is a contribution to all
  216.      the shareware/freeware/pd programmers, to whom I certainly owe a
  217.      lot.  Please read the DISCLAIMER & FREEWARE AGREEMENT earlier in
  218.      the documentation for more information.
  219.  
  220.      Source code is available from A.B.S.  Please see the enclosed
  221.      registration form for information and pricing.
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.                                    Page 4
  235.  
  236.      MulAware 3.30 Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  237.  
  238.  
  239.  
  240.  
  241.    TECHNICAL SUPPORT
  242.  
  243.      A.B.S.
  244.      P.O. Box 55647
  245.      Jackson, MS 39296-5647
  246.      601-362-7599  9am-6pm CST
  247.  
  248.      The Big Bang Theory BBS
  249.      601-366-1664 (HST/v.32bis)
  250.  
  251.      CIS        70740,450
  252.      SL_Net     250:302/532
  253.      FidoNet    1:3632/4
  254.      Internet   70740.450@compuserve.com
  255.  
  256.  
  257.    ACKNOWLEDGMENTS
  258.  
  259.      * Turbo Pascal is a registered trademark of Borland International
  260.      * OS/2 is a registered trademark of IBM Corporation
  261.      * MS-DOS is a registered trademark of Microsoft Corporation
  262.      * DESQview is a registered trademark of Quarterdeck Office Systems
  263.      * VMiX is a registered trademark of Commercial Software Associates
  264.      * Windows is a registered trademark of Microsoft Corporation
  265.      * MultiDos Plus is a registered trademark of Nanosoft Inc.
  266.      * All other programs are (c) and/or (tm) by their respective
  267.        author unless otherwise noted
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.                                    Page 5
  294.  
  295.      MulAware 3.30 Copyright (c) 1991,1992 A.B.S. - ALL RIGHTS RESERVED
  296.