Programmer's WorkBench (pwb.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
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.
                                    -♦-