FutureBasic Logo

<<    Index    >> FutureBasic 5

BeginCDeclaration   statement



Syntax:
BeginCDeclaration
 C declarations or preprocessor directives
EndC


Description:
Marks the beginning of a block of C language statements and is typically used to pass an #include statement to a translated .h file, for example:

BeginCDeclaration
 #include <OpenGL/glu.h>
EndC

The block must be terminated with the EndC statement. The C statements are copied untranslated into the C source code, then compiled by the C compiler.

See Also:
BeginCCode; BeginCFunction; EndC; #if