home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 28
/
amigaformatcd28.iso
/
+system+
/
tools
/
sound
/
eagleplayer2.00
/
rexx
/
ep_loadmodule.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-02-26
|
292b
|
23 lines
/* EaglePlayer - LOAD required module and play it
alternative:
call 'Eagleplayer loadmodule="..."' from shell
*/
parse arg filename
address 'rexx_EP'
options results
Loadmodule filename
if result == "no" then do
say "Module not loaded!"
end
else do
say "Module loaded!"
end