jovanivanovic opened Issue #2206:
Hello, I haven't found a way to set a name to the exported function, am I missing something here?
wasm_functype_t *core_ty = wasm_functype_new_0_1(wasm_valtype_new_i32()); wasm_func_t *core = wasm_func_new_with_env(store, core_ty, WasmExports::ICore_Instance, wasmResource, nullptr); wasm_functype_delete(core_ty);
jovanivanovic edited Issue #2206:
Hello, I haven't found a way to set a name to the exported function, am I missing something here?
wasm_functype_t *core_ty = wasm_functype_new_0_1(wasm_valtype_new_i32()); wasm_func_t *core = wasm_func_new_with_env(store, core_ty, WasmExports::ICore_Instance, wasmResource, nullptr); wasm_functype_delete(core_ty);
Or even setting a namespace for the export?
jovanivanovic edited Issue #2206:
Hello, I haven't found a way to set a name to the imported function, am I missing something here?
wasm_functype_t *core_ty = wasm_functype_new_0_1(wasm_valtype_new_i32()); wasm_func_t *core = wasm_func_new_with_env(store, core_ty, WasmExports::ICore_Instance, wasmResource, nullptr); wasm_functype_delete(core_ty);
Or even setting a namespace for the import?
Last updated: Nov 22 2024 at 16:03 UTC