Skip to content

FB_OUT_OBJ


Intrinsic define (macro value) set by the compiler

Syntax

` FB_OUT_OBJ

`

Description

__FB_OUT_OBJ__ indicates that the specified output file type on the compiler command line at the time of compilation is an object module.

Returns non-zero (-1) if the output is an object module. Returns zero (0) otherwise.

Only one of __FB_OUT_DLL__, __FB_OUT_EXE__, __FB_OUT_LIB__, or __FB_OUT_OBJ__, will evaluate to non-zero (-1). All others will evaluate to zero (0).

Examples

start GeSHi

vb
#if __FB_OUT_OBJ__
        '... specific instructions when compiling to an object file only
#else
        '... specific instructions when not compiling to an object file only
#endif

end GeSHi

Differences from QB

  • New to FreeBASIC

See also

  • __FB_OUT_EXE__
  • __FB_OUT_DLL__
  • __FB_OUT_LIB__

Back to DocToc

Translated from FreeBASIC official docs. Contact us for removal if infringed.
FreeBASIC is an open-source project, not affiliated with Microsoft