FB_XBOX
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbxbox
- Last revised: 2016-02-10
Intrinsic define set by the compiler
Syntax
` FB_XBOX
`
Description
Define without a value created at compile time when the -target xbox command line option is used. It can be used to compile parts of the program only if the target is Xbox.
Examples
start GeSHi
vb
#IFDEF __FB_XBOX__
'...instructions only for Xbox...
#ELSE
'...instructions not for Xbox...
#ENDIFend GeSHi
Differences from QB
- New to FreeBASIC
See also
__FB_LINUX____FB_WIN32__- Compiler Option: -target
Back to DocToc