home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999_B.iso / Lotus123 / SPANISH / INSTALL1.DSK / START.LSS < prev    next >
Text File  |  1997-03-21  |  3KB  |  100 lines

  1. ''/********************************************************************
  2. ''
  3. ''   Module Name:   start.lss
  4. ''
  5. ''   Module Code:   TOOLKIT
  6. ''
  7. ''   Author:              
  8. ''
  9. ''   Creation Date:  Aug 31, 1993
  10. ''
  11. ''   Copyright Lotus Development Corporation, (c) 1991
  12. ''
  13. ''
  14. ''  
  15. ''   Description: 
  16. ''     Lotus script file for common install
  17. ''  
  18. ''
  19. ''   Additional authors:
  20. ''
  21. ''   Change History:
  22. ''   $Log:   //bluebird/logfiles/GEMINI/cisdk/suit/start.all  $
  23. ''
  24. ''   Rev 1.1   10 May 1996 14:48:32   amello
  25. ''Fix Comment Prefix
  26. ''  
  27. ''     Rev 1.0   08 May 1996 22:31:26   amello
  28. ''  Initial Revision
  29. '' 
  30. ''    Rev 1.0   06 Feb 1996 14:27:58   vtshing
  31. '' Initial Revision
  32. ''
  33. ''   Rev 1.1   06 Nov 1995 09:17:26   vtshing
  34. '' Build 25.3
  35. '' 
  36. ''    Rev 1.7   31 Jul 1995 14:47:48   jdonohue
  37. '' Added register.lss
  38. '' 
  39. ''    Rev 1.6   08 Jun 1995 15:40:10   amontalv
  40. '' Added a check to see if toolkit initialization fails.  If it fails then stop
  41. '' all processing.
  42. '' 
  43. ''    Rev 1.5   18 May 1995 11:06:12   jdonohue
  44. '' Moved language.lss before suit.lss
  45. '' 
  46. ''    Rev 1.4   17 May 1995 18:21:24   mzgripce
  47. '' remove lic.lss and add language.lss
  48. '' 
  49. ''    Rev 1.3   16 May 1995 17:06:24   glutz
  50. '' Added automate.lss
  51. '' 
  52. ''    Rev 1.2   02 May 1995 12:54:00   cmoy
  53. '' Merged c2 into cf build
  54. '' 
  55. ''    Rev 1.1   13 Apr 1995 16:45:24   mzgripce
  56. '' add share32.lss
  57. '' 
  58. ''    Rev 1.0   11 Feb 1994 10:53:12   jbrodeur
  59. '' Initial Revision
  60. ''----------------------------------------------------------------------
  61. ''   Date     Vers. Pgmr  SPR#  Change
  62. ''----------------------------------------------------------------------
  63. ''  02-01-94  0002  MMETH       added inst.lss
  64. '' !
  65. ''  9-09-93   0001  MEM         Changed Compile to Compile
  66. ''
  67. ''----------------------------------------------------------------------
  68. ''
  69. ''********************************************************************/
  70. OPTION DECLARE
  71.  
  72. PUBLIC ToolKitInitalizeError&
  73.  
  74. sub initialize
  75.     DIM notused%
  76.  
  77.     notused = Compile ("SUITres.lss")
  78.     notused = Compile ("123res.lss")
  79.     notused = Compile ("aprres.lss")
  80.     notused = Compile ("resource.lss")
  81.     notused = Compile ("globals.lss")
  82.     notused = Compile ("setupapi.lss") 
  83.     notused = Compile ("register.lss")
  84.     notused = Compile ("toolkit.lss")
  85.     IF NOT ToolKitInitalizeError& = 0 THEN EXIT SUB
  86.     notused = Compile ("automate.lss")
  87.     notused = Compile ("callback.lss")
  88.     notused = Compile ("share32.lss")
  89.     notused = Compile ("share.lss")
  90.     notused = Compile ("language.lss")
  91.     notused = Compile ("SUIT.lss")
  92.     notused = Compile ("123.lss")
  93.     notused = Compile ("apr.lss")
  94.     notused = Compile ("inst.lss")
  95.     notused = Compile ("main.lss")
  96.  
  97. end sub
  98.  
  99.  
  100.