home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / +system+ / tools / sound / eagleplayer2.00 / rexx / ep_addengine.dopus next >
Text File  |  1998-02-26  |  502b  |  25 lines

  1. /* EaglePlayer - start required engine 
  2.  
  3.    ------------------------------------------------------------------------
  4.    Call as:
  5.    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6.    [ARexx]  Eagleplayer2:Rexx/EP_AddEngine.dopus {p} --arg--
  7.  
  8.    where --arg-- is the name of the Engine to start
  9.  
  10.    Flags:   none required
  11.  
  12. */
  13.  
  14. parse arg dopusport enginename
  15.  
  16. address 'rexx_EP'
  17.  
  18. options results
  19.  
  20. ascengine enginename 1
  21.  
  22. address value dopusport
  23. toptext 'Eagleplayer: '||result
  24. end
  25.