home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Programming / amigatalk / arexxscripts / Kill.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  2000-05-07  |  366 b   |  20 lines

  1. /*************************************************************
  2. * Kill.rexx Instruct the ARexxManager for AmigaTalk to quit.
  3. **************************************************************
  4. *
  5. */
  6.  
  7. Options FailAt 5
  8.  
  9. if ~show( 'l', "rexxsupport.library" ) then do
  10.    check = addlib( 'rexxsupport.library', 0, -30, 0 )
  11. end
  12.  
  13. ADDRESS "AmigaTalk_Rexx"
  14.  
  15. Do
  16.  
  17.    'Quit'
  18.  
  19. RETURN 
  20.