This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Macros | |
| #define | MB_PRINTF(START) |
Give a hint to the compiler the function is like printf. More... | |
| #define | UNUSED(x) (void)( x ) |
| #define | MB_DLL_EXPORT |
| Declare a function or class to be visible in shared library. More... | |
| #define | MB_DLL_HIDDEN |
| Declare a function or class to be internal to a shared library. More... | |
| #define | MB_DEPRECATED |
| Mark function or API as deprecated. More... | |
Provide pre-processor macros for compiler-specific features. All defined macros should expand to nothing if not supported by the compiler.
Definition in file Compiler.hpp.
| #define MB_DEPRECATED |
Mark function or API as deprecated.
Definition at line 102 of file Compiler.hpp.
| #define MB_DLL_EXPORT |
Declare a function or class to be visible in shared library.
Definition at line 92 of file Compiler.hpp.
| #define MB_DLL_HIDDEN |
Declare a function or class to be internal to a shared library.
Definition at line 93 of file Compiler.hpp.
| #define MB_PRINTF | ( | START | ) |
Give a hint to the compiler the function is like printf.
Public Compiler-Specifc Pre-Processor Macros
Tell the compiler that the function involves a printf-style format string and varargs list. This gives the compiler the opportunity to warn if the argument types do not match the format string. This macro should be inluded after the complete function declaration, but before the closing semi-colon.
| START | The position of the format string in the argument list, where the first argument is 1. |
this pointer in the argument list. It will not work correctly with static or non-member functions. Definition at line 68 of file Compiler.hpp.
| #define UNUSED | ( | x | ) | (void)( x ) |
Definition at line 71 of file Compiler.hpp.