home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / winutil / wspcr20 / wsglobal.wbt < prev    next >
Text File  |  1991-09-27  |  1KB  |  37 lines

  1. ; --- WSGLOBAL.WBT - WorkSpacer global default variable file
  2. ;     WorkSpacer 2.0 ⌐ 1991 - WiGuys Software
  3.  
  4. ; --- This file establishes global default integer and string values for
  5. ;     variables commonly used by all the WBT's.  If the directories used
  6. ;     by WorkSpacer are incorrect for your system, change the values of
  7. ;     ndwdir and windir here.  This file is also used to check for the
  8. ;     existence of WSPACER.LIB (and create it if needed), and to hide
  9. ;     the Batch Runner icon for all WBT's.
  10.  
  11. WinHide ( "WBT" )
  12. ndwdir = "c:\ndw\"
  13. windir = "c:\windows\"
  14. pix = 25
  15. nul = ""
  16. wsver = "WorkSpacer 2.0"
  17. count = 1
  18. replace = @NO
  19. allwin = WinItemize ( )
  20. spacelib = StrCat ( ndwdir, "wspacer.lib" )
  21. spacebak = StrCat ( ndwdir, "wspacer.bak" )
  22. spaceini = StrCat ( windir, "wspacer.ini" )
  23. inibak = StrCat ( windir, "wspacer2.ini" )
  24. hortab = Num2Char (9)
  25. lf = StrCat ( Num2Char (13), Num2Char (10) )
  26. tf = StrCat ( lf, lf )
  27.  
  28. ; --- Since WorkSpacer checks the size of WSPACER.LIB during several
  29. ;     procedures, check for the existence of it, and create a 0 byte
  30. ;     file if it doesn't exist.
  31.  
  32. If FileExist ( spacelib ) Then Return
  33. fHandle = FileOpen ( spacelib, "WRITE" )
  34. FileClose ( fHandle )
  35. Return
  36.  
  37.