home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Sound / Eagleplayer2 / Rexx / EP_LoadModule.rexx < prev    next >
OS/2 REXX Batch file  |  1998-01-09  |  292b  |  23 lines

  1. /* EaglePlayer - LOAD required module and play it
  2.  
  3.    alternative: 
  4.    call 'Eagleplayer loadmodule="..."' from shell 
  5. */
  6.  
  7. parse arg filename
  8.  
  9. address 'rexx_EP'
  10.  
  11. options results
  12.  
  13. Loadmodule filename
  14.  
  15. if result == "no" then do
  16.     say "Module not loaded!"
  17. end
  18. else do
  19.     say "Module loaded!"
  20. end
  21.  
  22.  
  23.