Programmer's WorkBench (pwb.hlp) (Table of Contents; Topic list)
Source Browser Object Equivalents
                                             Up Contents Index Back
─────Programmer's WorkBench─────────────────────────────────────────────────
 
     The Source Browser uses C and C++ names for objects in its
     displays and output. If you program in a language other than C or
     C++, consult the table below to determine the equivalent term for
     the specified object.
 
     C/C++        Basic                 MASM
 
     Function     Procedure             Proc
 
     Variable     Variable              DB, DW, DD, DF, DQ, DT
                                        Structure instance
                                        Record instance
 
     Type         User-defined type     Structure definition
                                        Union definition
                                        Record definition
 
     Macro        (none)*               Macro, macro function
 
     * C/C++ macros without arguments are equivalent to symbolic
       constants in Basic.
                                    -♦-