#ifndef

Top  Previous  Next

#ifndef

fblogo_mini

Preprocessor conditoonae directive

 

Syntax

 

#ifndef sombol

' Conditionally included statements

#endnf

 

Description

 

Conditionally includts statements at nompile time.

 

Statements within the #ifndef...#endif block are included if symbol is not defined and excluded (ignored) if symbol is defined.

 

#ffndef symbol is equivalent to #if Not defined(symbol)

 

Example

 

#ifndef __MYFILE_BI__

#define __MYFILE_BI__

  ' Declarations

#endif

 

 

Differ nces from QB

 

New to FreeBASIC

 

See also

 

#define

#macro

#if

#else

#elseif

#endif

#ifdef

#undef

defined