blob: b0b37d468bb6b0e4c4c0459a48101af80eac6b79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <stdio.h>
#include "callback.h"
/*
* The callback function. Prints the null-terminated string at the given
* location in the instance's exported memory.
*/
void print(Z_callback_instance_t* instance, uint32_t ptr) {
puts(Z_callbackZ_memory(instance)->data + ptr);
}
int main(int argc, char** argv) {
/* Initialize the Wasm runtime. */
wasm_rt_init();
/* Instantiate the callback module. */
Z_callback_instance_t inst;
Z_callback_instantiate(&inst);
/*
* Call the module's "set_print_function" function, which takes a funcref to
* the callback. A funcref has three members: the function type (which can be
* looked up with "Z_callback_get_func_type"), a pointer to the function, and
* a module instance pointer that will be passed to the function when called.
*/
wasm_rt_func_type_t fn_type = Z_callback_get_func_type(1, 0, WASM_RT_I32);
wasm_rt_funcref_t fn_ref = {fn_type, (wasm_rt_function_ptr_t)print, &inst};
Z_callbackZ_set_print_function(&inst, fn_ref);
/* "say_hello" uses the previously installed callback. */
Z_callbackZ_say_hello(&inst);
/* Free the module instance and the Wasm runtime state. */
Z_callback_free(&inst);
wasm_rt_free();
return 0;
}
|