Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C - <b>#pragma implementation-defined preprocessor directive</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
#pragma                  Implementation-Defined Preprocessor Directive

 #pragma  text

    An implementation may extend the behavior of the preprocessor in any
    way it wishes using the #pragma directive. pragmas not recognized by
    a preprocessor are ignored. The compiler currently only recognizes
    one pragma, that used to disable and enable stack space checking when
    a function is entered.  Here are two examples:

                #pragma  check_stack[-]

                #pragma  check_stack[+]

      Notes:    The `-' format disables the stack probe while the `+'
                format enables it.

                If neither - nor + is specified, the stack probe is
                disabled or enabled depending on the presence or absence
                of the compile-time switch /Gs.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson