home *** CD-ROM | disk | FTP | other *** search
- ''/********************************************************************
- ''
- '' Module Name: start.lss
- ''
- '' Module Code: TOOLKIT
- ''
- '' Author:
- ''
- '' Creation Date: Aug 31, 1993
- ''
- '' Copyright Lotus Development Corporation, (c) 1991
- ''
- ''
- ''
- '' Description:
- '' Lotus script file for common install
- ''
- ''
- '' Additional authors:
- ''
- '' Change History:
- '' $Log: //bluebird/logfiles/GEMINI/cisdk/suit/start.all $
- ''
- '' Rev 1.1 10 May 1996 14:48:32 amello
- ''Fix Comment Prefix
- ''
- '' Rev 1.0 08 May 1996 22:31:26 amello
- '' Initial Revision
- ''
- '' Rev 1.0 06 Feb 1996 14:27:58 vtshing
- '' Initial Revision
- ''
- '' Rev 1.1 06 Nov 1995 09:17:26 vtshing
- '' Build 25.3
- ''
- '' Rev 1.7 31 Jul 1995 14:47:48 jdonohue
- '' Added register.lss
- ''
- '' Rev 1.6 08 Jun 1995 15:40:10 amontalv
- '' Added a check to see if toolkit initialization fails. If it fails then stop
- '' all processing.
- ''
- '' Rev 1.5 18 May 1995 11:06:12 jdonohue
- '' Moved language.lss before suit.lss
- ''
- '' Rev 1.4 17 May 1995 18:21:24 mzgripce
- '' remove lic.lss and add language.lss
- ''
- '' Rev 1.3 16 May 1995 17:06:24 glutz
- '' Added automate.lss
- ''
- '' Rev 1.2 02 May 1995 12:54:00 cmoy
- '' Merged c2 into cf build
- ''
- '' Rev 1.1 13 Apr 1995 16:45:24 mzgripce
- '' add share32.lss
- ''
- '' Rev 1.0 11 Feb 1994 10:53:12 jbrodeur
- '' Initial Revision
- ''----------------------------------------------------------------------
- '' Date Vers. Pgmr SPR# Change
- ''----------------------------------------------------------------------
- '' 02-01-94 0002 MMETH added inst.lss
- '' !
- '' 9-09-93 0001 MEM Changed Compile to Compile
- ''
- ''----------------------------------------------------------------------
- ''
- ''********************************************************************/
- OPTION DECLARE
-
- PUBLIC ToolKitInitalizeError&
-
- sub initialize
- DIM notused%
-
- notused = Compile ("SUITres.lss")
- notused = Compile ("123res.lss")
- notused = Compile ("aprres.lss")
- notused = Compile ("resource.lss")
- notused = Compile ("globals.lss")
- notused = Compile ("setupapi.lss")
- notused = Compile ("register.lss")
- notused = Compile ("toolkit.lss")
- IF NOT ToolKitInitalizeError& = 0 THEN EXIT SUB
- notused = Compile ("automate.lss")
- notused = Compile ("callback.lss")
- notused = Compile ("share32.lss")
- notused = Compile ("share.lss")
- notused = Compile ("language.lss")
- notused = Compile ("SUIT.lss")
- notused = Compile ("123.lss")
- notused = Compile ("apr.lss")
- notused = Compile ("inst.lss")
- notused = Compile ("main.lss")
-
- end sub
-
-
-