Changeset 5030 for trunk/tools
- Timestamp:
- Jan 26, 2001, 10:33:13 PM (25 years ago)
- Location:
- trunk/tools/bin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/APIImport.cmd
r5012 r5030 1 /* $Id: APIImport.cmd,v 1. 6 2001-01-22 20:25:01phaller Exp $1 /* $Id: APIImport.cmd,v 1.7 2001-01-26 21:33:13 phaller Exp $ 2 2 * 3 3 * Helper script which invokes APIImport.exe with the correct .def file. … … 7 7 */ 8 8 9 if RxFuncQuery('SysFileDelete')= 0THEN9 if RxFuncQuery('SysFileDelete')=1 THEN 10 10 call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete'; 11 11 12 if RxFuncQuery('SysFileFree')= 0THEN12 if RxFuncQuery('SysFileFree')=1 THEN 13 13 call RxFuncAdd 'SysFileTree', 'RexxUtil', 'SysFileTree'; 14 14 -
trunk/tools/bin/BldLevelInf.cmd
r5018 r5030 1 /* $Id: BldLevelInf.cmd,v 1. 4 2001-01-23 15:32:18 birdExp $1 /* $Id: BldLevelInf.cmd,v 1.5 2001-01-26 21:33:13 phaller Exp $ 2 2 * 3 3 * Adds a Description string to the given .def-file. … … 6 6 */ 7 7 8 if (RxFuncQuery('SysLoadFuncs') = 0)then8 if RxFuncQuery('SysLoadFuncs') = 1 then 9 9 do 10 10 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; -
trunk/tools/bin/CreatePath.cmd
r5012 r5030 1 /* $Id: CreatePath.cmd,v 1. 2 2001-01-22 20:25:01phaller Exp $1 /* $Id: CreatePath.cmd,v 1.3 2001-01-26 21:33:13 phaller Exp $ 2 2 * 3 3 * Createpath.cmd <pathname> … … 7 7 */ 8 8 9 if RxFuncQuery('SysMkDir')= 0THEN9 if RxFuncQuery('SysMkDir')=1 THEN 10 10 call RxFuncAdd 'SysMkDir', 'RexxUtil', 'SysMkDir' 11 11 -
trunk/tools/bin/DoWithDirs.cmd
r5012 r5030 1 /* $Id: DoWithDirs.cmd,v 1. 9 2001-01-22 20:25:02phaller Exp $1 /* $Id: DoWithDirs.cmd,v 1.10 2001-01-26 21:33:13 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 if RxFuncQuery('SysLoadFuncs')= 0THEN16 if RxFuncQuery('SysLoadFuncs')=1 THEN 17 17 DO 18 18 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 19 19 call SysLoadFuncs 20 20 END 21 21 22 22 23 /* init options */ -
trunk/tools/bin/MakeBldLevelInfo.cmd
r5012 r5030 1 /* $Id: MakeBldLevelInfo.cmd,v 1. 2 2001-01-22 20:25:02phaller Exp $1 /* $Id: MakeBldLevelInfo.cmd,v 1.3 2001-01-26 21:33:13 phaller Exp $ 2 2 * 3 3 * Adds a Description string to the given .def-file. … … 6 6 */ 7 7 8 if RxFuncQuery('SysLoadFuncs'= 0THEN8 if RxFuncQuery('SysLoadFuncs'=1 THEN 9 9 DO 10 10 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
Note:
See TracChangeset
for help on using the changeset viewer.