Extern

Declares external C functions that can be called from BambooBasic

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Declares external C functions that can be called from BambooBasic

Technical Exegesis...

Declares external C functions that can be called from BambooBasic. Begins an Extern block where C function signatures are declared. Functions declared in Extern blocks can be called like regular BambooBasic functions but link to external C libraries. Must be closed with EndExtern. Use for accessing C APIs or system functions.

Example

Example.bam
; No example implemented yet