Get a function reference from a WASM Table.
Usage
wasmer_table_get_ext(ptr, table_ptr, index)
Arguments
- ptr
External pointer to WasmerRuntime.
- table_ptr
External pointer to Table.
- index
Index to get.
Value
External pointer to Function (or NULL)
Details
Get a function reference from a WASM Table
Examples
if (FALSE) { # \dontrun{
wasmer_table_get_ext(ptr, table_ptr, 0)
} # }