Classes script

From OS2World.Com Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

A little REXX script to show all the registered classes on your system.

Script

/* A little ReXX tool to list WPS classes */

rc = rxFuncAdd( 'sysLoadFuncs', 'rexxUtil', 'SysLoadFuncs' )

if rc = 0 then do
  call sysLoadFuncs
  say 'RexxUtil.dll functions registered'
end

say 'WPS Classes: '
call SysQueryClassList "list."
do i = 1 to list.0
  say 'Class' i 'is' list.i
end

exit 0

License