Specifies that a function must not be inlined.
__declspec (never_inline) function_prototype;
Declaring a function's prototype with this declaration specification tells the compiler not to inline the function, even if the function is later defined with the inline, __inline__, or __inline keywords.