home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Moz…t - The Dissonant Quartet / Microsoft_Multimedia_Mozart_The_Dissonant_Quartet_Microsoft_Home_1993.iso / mozart / msstp / product.inc < prev    next >
Text File  |  1995-03-05  |  1KB  |  47 lines

  1. 'Product specific stuff for setup
  2.  
  3. 'Long Name of product
  4. CONST strProduct$ = "Microsoft Mozart"
  5.  
  6. 'Names used for Prog Man items
  7. CONST strItemName$ = "Microsoft Mozart"
  8. CONST strReadMeItemName$ = "Read Me: Mozart Tips"
  9.  
  10. 'Names of exe and ini files
  11. CONST strExe$ = "msmozart.exe"
  12. CONST strIni$ = "mozart.ini"
  13.  
  14. 'Name of section within ini file
  15. CONST strIniSection = "mozart"
  16.  
  17. 'Name of directory under root of CD
  18. CONST strProductDir = "MOZART"
  19.  
  20. 'Default place to put stuff on HD
  21. CONST strDefaultDest = "C:\MOZART"
  22.  
  23. 'Amount of disk space needed
  24. CONST cbDiskNeeded = 4000000
  25.  
  26. 'Fonts to be installed. strings are used to create 
  27. '       xxxxKey=xxxxVal
  28. 'entries in win.ini
  29. 'Up to 3 are currently coded for.  If you need less
  30. 'set xtras to ""
  31. CONST strF1IniKey = "Millicent 10,12,14,16"
  32. CONST strF1IniVal = "MILL.FON"
  33. CONST strF2IniKey = "Millicent Bold 12,14"
  34. CONST strF2IniVal = "MILLB.FON"
  35. CONST strF3IniKey = ""
  36. CONST strF3IniVal = ""
  37.  
  38. 'Name of file at least 1.5 meg big for CD performance test
  39. CONST TEST_PATH$ = "\mozart\wav\world\world10.wav"
  40.  
  41. 'Names of sections in INF file and directory on disk of 16 and 256
  42. 'color dibs. 
  43. CONST C16_SECTION$ = "C16"
  44. CONST C256_SECTION$ = "C256"
  45. CONST C16_DIR$ = "\illus16\hd"
  46. CONST C256_DIR$ = "\illus256\hd"
  47.