home *** CD-ROM | disk | FTP | other *** search
/ YPA: Your Privacy Assured / YPA.ISO / other_goodies / music / ep154b_1.dms / ep154b_1.adf / Rexx / EP_NextModule.dopus < prev    next >
Text File  |  1995-01-17  |  334b  |  27 lines

  1. /* Eagleplayeransteuerung ⁿber Diropus
  2.    (c) 1993 Henryk Richter
  3.    lΣdt nΣchstes Modul der Liste
  4. */
  5. options results
  6.  
  7. if pos('rexx_EP',SHOW('Ports')) = 0 then do
  8.  
  9.  address 'DOPUS.1'
  10.  
  11.  toptext 'Eagleplayer-Port not found'
  12.  
  13.  exit 0
  14.  
  15.  end
  16.  
  17. address 'rexx_EP'
  18.  
  19. nextModule
  20. aha=result
  21.  
  22. address 'DOPUS.1'
  23.  
  24. toptext 'Eagleplayer: '||aha
  25.  
  26. exit
  27.