home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / dos / prg / midas / docs / midasif.doc < prev    next >
Text File  |  1994-08-06  |  2KB  |  33 lines

  1.         MIDAS simple programming interface
  2.         ----------------------------------
  3.  
  4. MIDAS.C & MIDAS.H and MIDAS.PAS contain a simplified MIDAS Sound System
  5. programming interface, which allows easy integration of background
  6. music into programs. They are not directly suitable for other kinds of
  7. programs than stand-alone module players, but can serve as a basis for
  8. building a tailored interface for your own needs.
  9.  
  10. The MIDAS programming interface also includes a command-line option and
  11. environment string parser. While this kind of configuration is not
  12. useful in most applications, they can serve as a quick setup system
  13. during development phase, until you have time to build a better
  14. configuration system for your own program. Again, the command-line
  15. option parser can be used as a convenient basis for a setup program.
  16.  
  17. The MIDAS parser recognizes the following options:
  18.  
  19.         -sx     Force Sound Device x (1 = GUS, 2 = PAS, 3 = WSS, 4 = SB,
  20.                 5 = No Sound)
  21.         -pxxx   Force I/O port xxx (hex) for Sound Device
  22.         -ix     Force IRQ x for Sound Device
  23.         -dx     Force DMA channel x for Sound Device
  24.         -mxxxx  Set mixing rate to xxxx Hz
  25.         -oxxx   Force output mode (8 = 8-bit, 1 = 16-bit, s = stereo,
  26.                 m = mono)
  27.         -e      Disable EMS usage
  28.         -t      Disable ProTracker BPM tempos
  29.         -u      Enable Surround sound
  30.         -v      Disable real VU-meters
  31.  
  32. Also '\' is recognized as an option delimiter.
  33.