home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / oct93 / misc / dasmodplay.lha / DASModPlay / Goodies / QUIT.drx < prev    next >
Text File  |  1993-08-19  |  297b  |  20 lines

  1. /*
  2.     Arexx demoscript for DasModplayer by Erno Tuomainen
  3.  
  4.     This will JUST Remove DASModPlayer from Memory and stop playing
  5. */
  6.  
  7. OPTIONS Results
  8.  
  9. result = SHOW('Ports','DASMP_Rexx')
  10. if result=0 then DO
  11.     say 'No DASModPlayer in memory, quitting'
  12.     say ''
  13.     EXIT
  14. END
  15.  
  16. ADDRESS 'DASMP_Rexx'
  17. STOP
  18. QUIT
  19. EXIT
  20.