home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 26
/
amigaformatcd26.iso
/
+system+
/
tools
/
sound
/
eagleplayer2.00
/
rexx
/
ep_quit.dopus
< prev
next >
Wrap
Text File
|
1998-02-26
|
562b
|
26 lines
/* Eagleplayer control for DOPUS 4
(c) 1993-97 DEFECT Softworks
remote-terminate Eagleplayer
------------------------------------------------------------------------
Call as:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[ARexx] Eagleplayer2:Rexx/EP_Quit.dopus {p}
Flags: none required
*/
parse arg opusport
if (pos('rexx_EP',SHOW('Ports')) = 0) then
do
address value opusport
toptext 'Eagleplayer not found'
exit
end
address 'rexx_EP'
quit
address value opusport
toptext 'Eagleplayer quitted'
exit