Category
Keyword extensions
Syntax
__inline <datatype> <class>_<function> (<parameters>) { <statements>; }
Description
Use the __inline keyword to declare or define C or C++ inline functions. The behavior of the __inline keyword is identical to that of the inline keyword, which is only supported in C++.
Inline functions are best reserved for small, frequently used functions.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|