fsFlowRegister

The fsFlowRegister is used to register a Flow API callback;

 

Syntax
bool fsFlowRegister(
    fsFlowWasmCallback callback
    void* context
    );

 

Members
Parameters Description
callback Callback to use if the event is received.
context

Context given when the event is registered. The pointer will be sent back when the event is called

Default value is nullptr.

 

Return Values

The function returns False if something is wrong with the arguments and/or the registration did not happen, otherwise it returns True.

 

Remarks

N/A