Changeset 5012 for trunk/tools
- Timestamp:
- Jan 22, 2001, 9:25:02 PM (25 years ago)
- Location:
- trunk/tools/bin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/APIImport.cmd
r3943 r5012 1 /* $Id: APIImport.cmd,v 1. 5 2000-08-02 20:19:34 birdExp $1 /* $Id: APIImport.cmd,v 1.6 2001-01-22 20:25:01 phaller Exp $ 2 2 * 3 3 * Helper script which invokes APIImport.exe with the correct .def file. … … 7 7 */ 8 8 9 call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete'; 9 if RxFuncQuery('SysFileDelete')=0 THEN 10 call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete'; 11 12 if RxFuncQuery('SysFileFree')=0 THEN 10 13 call RxFuncAdd 'SysFileTree', 'RexxUtil', 'SysFileTree'; 11 14 -
trunk/tools/bin/BldLevelInf.cmd
r4886 r5012 1 /* $Id: BldLevelInf.cmd,v 1. 2 2001-01-08 20:15:51 birdExp $1 /* $Id: BldLevelInf.cmd,v 1.3 2001-01-22 20:25:01 phaller Exp $ 2 2 * 3 3 * Adds a Description string to the given .def-file. … … 6 6 */ 7 7 8 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 9 call SysLoadFuncs; 8 if RxFuncQuery('SysLoadFuncs'=0 THEN 9 DO 10 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 11 call SysLoadFuncs; 12 END 10 13 11 14 /* -
trunk/tools/bin/CreatePath.cmd
r4635 r5012 1 /* $Id: CreatePath.cmd,v 1. 1 2000-11-19 23:24:51 birdExp $1 /* $Id: CreatePath.cmd,v 1.2 2001-01-22 20:25:01 phaller Exp $ 2 2 * 3 3 * Createpath.cmd <pathname> … … 6 6 * 7 7 */ 8 9 if RxFuncQuery('SysMkDir')=0 THEN 8 10 call RxFuncAdd 'SysMkDir', 'RexxUtil', 'SysMkDir' 9 11 -
trunk/tools/bin/DoWithDirs.cmd
r4645 r5012 1 /* $Id: DoWithDirs.cmd,v 1. 8 2000-11-20 05:03:14 birdExp $1 /* $Id: DoWithDirs.cmd,v 1.9 2001-01-22 20:25:02 phaller Exp $ 2 2 * 3 3 * Syntax: dowithdirs.cmd [-e<list of excludes>] [-c] [-i] [-l] [-r] <cmd with args...> … … 14 14 */ 15 15 16 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 17 call SysLoadFuncs 16 if RxFuncQuery('SysLoadFuncs')=0 THEN 17 DO 18 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 19 call SysLoadFuncs 20 END 18 21 19 22 /* init options */ -
trunk/tools/bin/MakeBldLevelInfo.cmd
r4804 r5012 1 /* $Id: MakeBldLevelInfo.cmd,v 1. 1 2000-12-16 20:10:06 birdExp $1 /* $Id: MakeBldLevelInfo.cmd,v 1.2 2001-01-22 20:25:02 phaller Exp $ 2 2 * 3 3 * Adds a Description string to the given .def-file. … … 6 6 */ 7 7 8 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 9 call SysLoadFuncs; 10 8 if RxFuncQuery('SysLoadFuncs'=0 THEN 9 DO 10 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 11 call SysLoadFuncs; 12 END 13 11 14 /* 12 15 * Set default parameter values.
Note:
See TracChangeset
for help on using the changeset viewer.