Gambas Documentation
Application Repository
Code Snippets
Compilation & Installation
Components
Controls pictures
Deprecated components
Developer Documentation
Development Environment Documentation
Documents
Error Messages
Gambas Playground
How To's
Language Index
Language Overviews
Arithmetical Functions
Arithmetic Operators
Array Declaration
Assignment Operators
Assignments
Binary Data Representation
Bits Manipulation Functions
Character Test Functions
Comparison methods
Complex numbers
Constant Declaration
Constant Expression
Conversion Functions
Datatype Functions
Datatypes
Date & Time Functions
Enumeration declaration
Error Management
Event Loop
Event Management
Events declaration
Expressions
External Function Management
File & Directory Functions
File & Directory Paths
File mode syntax
Floating Point Numbers
Formatting functions
Gambas Object Model
Global Special Event Handlers
Integer numbers
Intrinsic Functions
Language Constants
Localization and Translation Functions
Local Variable Declaration
Logarithms & Exponentials Functions
Logical Operators
Loop Control Structures
Method Declaration
Miscellaneous Control Structures
Miscellaneous Functions
Native Arrays
Native Container Classes
Object & Class Management
Operator Evaluation Order
Predefined Constants
Process Management
Property Declaration
Random Numbers Functions
Special Methods
Stream & Input/Output functions
String Functions
String Operators
Structure declaration
Test Control Structures & Functions
Trigonometric Functions
User-defined formats
Using reserved keywords as identifiers
Variable Declaration
Last Changes
Lexicon
README
Search the wiki
To Do
Topics
Tutorials
Wiki License
Wiki Manual

External Function Management

Alloc Allocates a memory block.
Boolean@ Return the Boolean value located at a given memory address.
Byte@ Return the Byte value located at a given memory address.
EXTERN Declares an external function.
Float@ Return the Float value located at a given memory address.
Free Frees a memory block allocated with Alloc.
Integer@ Return the Integer value located at a given memory address.
LIBRARY Defines the library where external functions are located.
Long@ Return the Long value located at a given memory address.
MkBoolean$ Return the memory representation of a Boolean as a string.
MkByte$ Return the memory representation of a Byte as a string.
MkDate$ Return the memory representation of a Date as a string.
MkFloat$ Return the memory representation of a Float as a string.
MkInteger$ Return the memory representation of an Integer as a string.
MkLong$ Return the memory representation of a Long as a string.
MkPointer$ Return the memory representation of a Pointer as a string.
MkShort$ Return the memory representation of a Short as a string.
MkSingle$ Return the memory representation of a Single as a string.
Pointer@ Return the Pointer value located at a given memory address.
Realloc Shrinks or expands a memory block allocated with Alloc.
Short@ Return the Short value located at a given memory address.
Single@ Return the Single value located at a given memory address.
StrPtr Returns a copy of a zero-terminated string located at a given memory address.
String@ Returns a copy of a zero-terminated string located at a given memory address.
VarPtr Returns a pointer that points at the contents of a variable.

See also