#IF_DEFINED
This Compiler Directive is used to define conditional compilation:
- The code following the #IF_DEFINED and before #ELSE (or before
#END_IF, if #ELSE is not present) is compiled only if
symbolis defined (see #DEFINE). - If
symbolis not defined and the #ELSE directive is present, the code following #ELSE and before #END_IF is compiled instead.