Undocumented Delphi 8 predefined conditional symbols
The Delphi 8 compiler introduces the following predefined conditional symbols.
| Symbol |
Description |
| CIL |
Indicates the machine code model, roughly corresponding to CPU386. |
| CLR |
Indicates OS / runtime environment, roughly corresponding to Win32. |
| MANAGEDCODE |
Indicates managed code environment. |
| VER160 |
Indicates this is version 16.0 of the Delphi compiler. |
Usage:
{$IFDEF ConditionalSymbolAbove}
...
{$ENDIF}