FB_OPTION_DYNAMIC
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfboptiondynamic
- Last revised: 2016-02-10
Intrinsic define (macro value) set by the compiler
Syntax
` FB_OPTION_DYNAMIC
`
Description
__FB_OPTION_DYNAMIC__ is defined as true (negative one (-1)) if a recent Option Dynamic statement or '$Dynamic meta-command was issued. Otherwise, it is defined as zero (0).
Examples
start GeSHi
vb
#if __FB_OPTION_DYNAMIC__ <> 0
#error This module must Not use Option Dynamic
#endifend GeSHi
Differences from QB
- New to FreeBASIC
See also
Option DynamicOption Static
Back to DocToc