home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
comm
/
ems-1.0.lha
/
EMS
/
Rexx
/
Automaint.ems
< prev
next >
Wrap
Text File
|
1993-06-01
|
558b
|
36 lines
/* AutoMaint.ems */
options results
signal on error
signal on syntax
parse arg areas
if( ~show( 'l', "ems_rexx.library" ) ) then
do
if( ~addlib( "ems_rexx.library", 0, -30, 0 ) )then
do
say "Could not open ems_rexx.library"
exit 10
end
end
if areas = '' then areas = '#?'
call EMS_Database_Automaint( areas, 'MSG' )
call EMS_FreeScriptData()
exit 0
error:
syntax:
error_text = EMS_LastError()
if error_text = '' then error_text = rc ErrorText( rc )
say '| ***BREAK: error at' sigl error_text
call EMS_FreeScriptData()
exit rc