home *** CD-ROM | disk | FTP | other *** search
- /* REXX file to list WPS system objects. */
- /* */
- /* From the July 1993 MMOUG newsletter. */
-
- "@echo off"
- "cls"
- SAY "Getting list of all WPS objects:";
-
- /* Add WPS system functions to REXX. */
- call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
- call SysLoadFuncs
-
- /* Loop to list each system object. */
- call SysQueryClassList "list."
- do i=1 to list.0
- say "Class" i "is" list.i
- end
-
- SAY "List creation completed."
- EXIT
-
-