home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 14 / 14.iso / s / s005 / 24.ddi / PACK0.PK1 / INSTSND.CMD < prev    next >
Encoding:
Text File  |  1993-02-23  |  840 b   |  21 lines

  1. /*********************************************************************/
  2. /*                 REXX Command File                                 */
  3. /*  (C) Copyright IBM Corporation 1991, 1993                         */
  4. /*  All Rights Reserved.                                             */
  5. /*  IBM is a registered trademark of International Business Machines */
  6. /*********************************************************************/
  7. /*  INSTSND  <MMOS2 Directory>                                       */
  8. /*********************************************************************/
  9. parse arg arg1
  10. If (arg1='') Then arg1='C:\MMOS2'
  11. Call RXFUNCADD "mciRxInstMMSound", "MMSND", "mciRxInstMMSound"
  12. rc = mciRxInstMMSound(arg1)
  13.  
  14. If (rc='0') Then
  15.  Do
  16.    say 'Install successful'
  17.    say 'Now reboot'
  18.  End
  19. Else
  20.    say 'Install failed'
  21.