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

  1. {                          MSINST.PAS
  2.                            MSINST 4.0
  3.              Copyright (c) 1985, 87 by Borland International, Inc.            }
  4.  
  5. program MSINST;
  6.   {-Install MicroStar editor}
  7.  
  8. {$V-}
  9. {$I-}
  10. {$S-}
  11. {$R-}
  12. {$M 16384, 65536, 100000}
  13.  
  14. uses
  15.   Crt,                       {Standard screen routines}
  16.   Dos,                       {DOS calls - standard unit}
  17.   Errors,                    {Error handling routines}
  18.   SInst,                     {Fast screen routines for installation programs}
  19.   EscSeq,                    {Returns name for extended keystroke sequence}
  20.   EdiTools;                  {General purpose tools for installation programs}
  21.  
  22.   {$I mscmds.inc}            {Enumerated type of all editor commands}
  23.   {$I msivars.inc}           {Global declarations for installation program}
  24.   {$I msikey.inc}            {Keyboard installation}
  25.   {$I msihelp.inc}           {Help installation}
  26.  
  27. begin                        {Install}
  28.   Initialize(ProgName, version);
  29.   {
  30.     To add screen and/or options installation, use the OptionInstall and
  31.     ScreenInstall routines from EDINST, modifying as necessary to account
  32.     for the additional options available in MicroStar.
  33.   }
  34.   if KeyInstall then
  35.     HelpInstall;
  36.   CleanUp;
  37. end.                         {Install}
  38.