FB_64BIT
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfb64bit
- Last revised: 2016-02-10
Intrinsic define set by the compiler
Syntax
` FB_64BIT
`
Description
Define created at compile time if the the compilation target is 64bit, otherwise undefined.
Examples
start GeSHi
vb
#IFDEF __FB_64BIT__
'...instructions for 64bit OSes...
#ELSE
'...instructions for other OSes
#ENDIFend GeSHi
Differences from QB
- New to FreeBASIC
See also
__FB_LINUX____FB_FREEBSD____FB_OPENBSD____FB_NETBSD____FB_CYGWIN____FB_DARWIN____FB_PCOS__- Compiler Option: -target
Back to DocToc