|
| #define | IS_ENABLED_ALL(...) |
| | Check multiple macro definitions to see if all are set in compiler-visible expressions.
|
| |
| #define | IS_ENABLED_ANY(...) |
| | Check multiple macro definitions to see if any is set in compiler-visible expressions.
|
| |
| #define | IF_ENABLED_ALL(_flags, ...) |
| | Insert code if all _flags are defined and equals 1.
|
| |
| #define | IF_ENABLED_ANY(_flags, ...) |
| | Insert code if any _flags are defined to 1.
|
| |
| #define | UTIL_CONCAT_AND(...) |
| | Concatenates all arguments with "&&" between them into a single token.
|
| |
| #define | UTIL_CONCAT_OR(...) |
| | Concatenates all arguments with "||" between them into a single token.
|
| |