qc.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.
check_pointer
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Pragma:    check_pointer
 
  Syntax:    #pragma check_pointer ([{ on | off }])
 
  Summary:   Instructs the compiler to turn off pointer checking if off
             is specified, or to turn on pointer checking if on is
             specified.
 
                                    Compiled with
     Syntax                         Pointer Check?   Action
 
     #pragma check_pointer()        Yes              Turns off pointer
                                                     checking for
                                                     pointers that follow
 
     #pragma check_pointer()        No               Turns on pointer
                                                     checking for
                                                     pointers that follow
 
     #pragma check_pointer( on )    Yes or no        Turns on pointer
                                                     checking for
                                                     pointers that follow
 
     #pragma check_pointer( off )   Yes or no        Turns off pointer
                                                     checking for
                                                     pointers that follow
                                    -♦-