![]() |
BlitzMax Extended
0.8.19
Pushing Blitz to the Max.
|
Low-level macros and defines to ease cross-platform programming. More...
Go to the source code of this file.
Macros | |
| #define | BB_DEBUG |
| Defined if the operating system is MacOS (X) | |
| #define | BB_MIN(x, y) |
| Calculates the minimum of two values. | |
| #define | BB_MAX(x, y) |
| Calculates the maximum of two values. | |
| #define | BB_ABS(x) |
| Calculates an absolute value. | |
Low-level macros and defines to ease cross-platform programming.
| #define BB_ABS | ( | x | ) |
Calculates an absolute value.
| x | The value |
| #define BB_DEBUG |
Defined if the operating system is MacOS (X)
Equals the BlitzMax precompiler define ?MacOS: #ifdef BB_OS_MACOS does the same as ?MacOS Defined if the operating system is Windows
Equals the BlitzMax precompiler define ?Win32: #ifdef BB_OS_WIN32 does the same as ?Win32
| #define BB_MAX | ( | x, | |
| y | |||
| ) |
Calculates the maximum of two values.
| x | The first value |
| y | The second value |
| #define BB_MIN | ( | x, | |
| y | |||
| ) |
Calculates the minimum of two values.
| x | The first value |
| y | The second value |
Referenced by bbStringCompare().
1.8.1.1