#elseif

Preprocessor conditional directive

Syntax
	KeyPgPpif#if (expression1)
		' Conditionally included statements if expression1 is True
	#elseif (expression2)
		' Conditionally included statements if expression2 is True
	KeyPgPpelse#else
		' Conditionally included statements if both
		' expression1 and expression2 are False
	KeyPgPpendif#endif

Description
	#elseif can be added to an KeyPgPpif#if block to provide an additional 
	conditions.

Example
	#define WORDSIZE 16
	#if (WORDSIZE = 16)
	  ' Do some some 16 bit stuff
	#elseif (WORDSIZE = 32)
	  ' Do some some 32 bit stuff
	#else
	  #error WORDSIZE must be set To 16 Or 32
	#endif

Differences from QB
	* New to Freebasic

See also
	* KeyPgPpdefine#define
	* KeyPgPpmacro#macro
	* KeyPgPpif#if
	* KeyPgPpelse#else 
	* KeyPgPpelseifdef#elseifdef 
	* KeyPgPpelseifndef#elseifndef 
	* KeyPgPpendif#endif 
	* KeyPgPpifdef#ifdef
	* KeyPgPpifndef#ifndef
	* KeyPgPpundef#undef
	* KeyPgDefineddefined

