home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / tptools.zip / EDINST.ZIP / EDINST.PAS < prev    next >
Pascal/Delphi Source File  |  1987-12-21  |  1KB  |  34 lines

  1. {                          EDINST.PAS
  2.                            EDINST 4.0
  3.              Copyright (c) 1985, 87 by Borland International, Inc.            }
  4.  
  5. {$V-}
  6. {$I-}
  7. {$S-}
  8. {$M 16384, 65536, 100000}
  9.  
  10. program Install;
  11.   {-Install FirstEd editor}
  12.  
  13. uses
  14.   Crt,                       {screen routines - standard unit}
  15.   Dos,                       {dos calls - standard unit}
  16.   Errors,                    {error handling routines}
  17.   SInst,                     {fast screen routines for installation programs}
  18.   EscSeq,                    {returns name for extended keystroke sequence}
  19.   EdiTools;                  {general purpose tools for installation programs}
  20.  
  21.   {$I edcmds.inc}            {Enumerated type of all editor commands}
  22.   {$I edivars.inc}           {Global declarations for installation program}
  23.   {$I ediscrn.inc}           {Screen installation}
  24.   {$I ediopt.inc}            {Option installation}
  25.   {$I edikey.inc}            {Keyboard installation}
  26.  
  27. begin                        {Install}
  28.   Initialize(ProgName, Version);
  29.   OptionInstall;
  30.   ScreenInstall;
  31.   KeyInstall;
  32.   CleanUp;
  33. end.                         {Install}
  34.