Syntax:
#ifndef Constant | Constant Value | Var(VariableName) ... [#else] ... #endif
Explanation:
The #ifndef
directive is used to selectively enable sections of code. It is the opposite of the #ifdef
directive - it will delete code in cases where #ifdef
would leave it, and will leave code where #ifdef
would delete it.
See the #ifdef article for more information.