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 perform on your program. The Microsoft C pragmas are:
See Pragma Directives and the __Pragma
Keyword for a description of the Microsoft C compiler pragmas.
END Microsoft Specific