summaryrefslogtreecommitdiff
path: root/wasm2c/examples/callback/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'wasm2c/examples/callback/main.c')
-rw-r--r--wasm2c/examples/callback/main.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/wasm2c/examples/callback/main.c b/wasm2c/examples/callback/main.c
new file mode 100644
index 00000000..b0b37d46
--- /dev/null
+++ b/wasm2c/examples/callback/main.c
@@ -0,0 +1,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;
+}