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

  1. /* Eagleplayeransteuerung über Diropus
  2.    (c) 1993-1997 Defect Softworks
  3.    
  4.    ------------------------------------------------------------------------
  5.    Call as:
  6.    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  7.    [ARexx]  Eagleplayer2:Rexx/EP_NextModule.dopus {p}
  8.  
  9.    Flags:   none required
  10.  
  11.  
  12. */
  13. parse arg opusport
  14.  
  15. options results
  16.  
  17. if pos('rexx_EP',SHOW('Ports')) = 0 then do
  18.  
  19.  address value opusport
  20.  
  21.  toptext 'Eagleplayer-Port not found'
  22.  
  23.  exit 0
  24.  
  25.  end
  26.  
  27. address 'rexx_EP'
  28.  
  29. nextModule
  30. aha=result
  31.  
  32. address value opusport
  33.  
  34. toptext 'Eagleplayer: '||aha
  35.  
  36. exit
  37.