home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 4: Phase Four / 17Bit_Phase_Four.iso / files / 3197b.dms / 3197b.adf / ArexxExamples.lha / EP_EjectModule.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1993-10-21  |  182 b   |  15 lines

  1. /* EaglePlayer - Eject Module */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6. status G fil
  7.  
  8. if result == "no" then do
  9.     say "No Module loaded !"
  10. end
  11. else do
  12.     eject
  13.     say "Module ejected !"
  14. end
  15.