__FB_XBOX__

Intrinsic define set by the compiler

Syntax
	__FB_XBOX__

Description
	Define without a value created at compile time when the CompilerOpttarget-target xbox 
	command line option is used. It can be used to compile parts of the 
	program only if the target is Xbox.

Example
	#ifdef __FB_XBOX__
	  '...instructions only for Xbox...
	#else
	  '...instructions not for Xbox...
	#endif 

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfblinux__FB_LINUX__
	* KeyPgDdfbwin32__FB_WIN32__
	* CompilerOpttargetCompiler Option: -target

