Classes script: Difference between revisions

From OS2World.Com Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
A little REXX script to show all the registered classes on your system.
A little REXX script to show all the registered classes on your system.
==Author==
* [[Cristiano Guadagnino]]


==Script==
==Script==
Line 26: Line 23:


==License==
==License==
Open Source under the GNU GPL V2 License.  
*Open Source under the GNU GPL V2 License.  
*Author: [[Cristiano Guadagnino]]


[[Category:Software]]
[[Category:Open Source Software]]
[[Category:Open Source Software]]

Revision as of 16:49, 22 October 2017

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