OS/2 Procedures Language 2/REXX


Inf-HTML [About][Toc][Index] 0.9b (c) 1995 Peter Childs


SysQueryClassList

 
 Function: SysQueryClassList 
 Syntax:   call  SysQueryClassList stem 
      stem      The name of a stem variable in which the entire set of 
                registered classes is placed. 
      Purpose:  Retrieve the complete list of registered object classes. 

           Examples:
           
             /* Code    */
              call SysQueryClassList "list."
              do i = 1 to list.0
                say 'Class' i 'is' list.i
              end
           
           
   

Inf-HTML End Run - Successful