JUCE
|
Defines a native function that the program can call. More...
#include <juce_LittleFootRunner.h>
Public Types | |
using | ImplementationFunction = int32 (*) (void*, const int32*) |
Public Member Functions | |
NativeFunction (const char *nameAndArgumentTypes, ImplementationFunction fn) | |
Creates a NativeFunction from its signature and an implementation function. | |
Static Public Member Functions | |
static FunctionID | createID (const char *nameAndArgTypes) |
Converts a function signature to its hashed ID. | |
Public Attributes | |
const char * | nameAndArguments |
This signature must have the form "name/[return type][arg1][arg2..]". | |
ImplementationFunction | function |
A static function that will be called. | |
FunctionID | functionID |
The ID is a hash of the name + arguments, but not the return type. | |
Type | returnType |
The function's return type. | |
uint8 | numArgs |
The number of arguments that the function takes. | |
Defines a native function that the program can call.
littlefoot::NativeFunction::NativeFunction | ( | const char * | nameAndArgumentTypes, |
ImplementationFunction | fn ) |
Creates a NativeFunction from its signature and an implementation function.
The format of nameAndArgumentTypes is "name/[return type][arg1][arg2..]" So for example "int foobar (float, bool)" would be "foobar/ifb"
References numArgs, and returnType.
|
static |
Converts a function signature to its hashed ID.
References jassert.
This signature must have the form "name/[return type][arg1][arg2..]".
ImplementationFunction littlefoot::NativeFunction::function |
A static function that will be called.
FunctionID littlefoot::NativeFunction::functionID |
The ID is a hash of the name + arguments, but not the return type.
Type littlefoot::NativeFunction::returnType |
The function's return type.
Referenced by NativeFunction().
uint8 littlefoot::NativeFunction::numArgs |
The number of arguments that the function takes.
Referenced by NativeFunction().