C Pragmas

Microsoft Specific —>

A “pragma” instructs the compiler to perform a particular action at compile time. Pragmas vary from compiler to compiler. For example, you can use the optimize pragma to set the optimizations to be performed on your program. The Microsoft C pragmas are:

alloc_text data_seg inline_recursion setlocale
auto_inline function intrinsic warning
check_stack hdrstop message
code_seg include_alias optimize
comment inline_depth pack

See Chapter 2, Pragma Directives, in the Preprocessor Reference for a description of the Microsoft C compiler pragmas.

END Microsoft Specific