home *** CD-ROM | disk | FTP | other *** search
- /* rexx-program
- Author: Martin Vieregg, Germany, March 1995 */
-
- Call RxFuncAdd 'SysLoadFuncs','RexxUtil','SysLoadFuncs'
- Call SysLoadFuncs
-
- say "Beginning deleting folders and program objects..."
-
- Call Destroy "<MVdir_arj>"
- Call Destroy "<MVdir_zip>"
- Call Destroy "<MVunpack_arj>"
- Call Destroy "<MVunpack_zip>"
- Call Destroy "<MVempty>"
-
- Call Destroy "<MVpack_zip>"
- Call Destroy "<MVPackProgs>"
- Call Destroy "<MVPackFolder>"
-
- say "Successful destroying of folders and program objects."
-
- exit
-
- Destroy:
- if SysDestroyObject(ARG(1)) then say "deleting "ARG(1)" OK"
- else say "deleting "ARG(1)" failed"
- return