Add API wasm_runtime_set_module_inst (#1286)

Add API wasm_runtime_set_module_inst, per request from #1275
This commit is contained in:
Wenyong Huang
2022-07-14 11:36:11 +08:00
committed by GitHub
parent d08e13c5ad
commit 0ec27af9df
5 changed files with 38 additions and 0 deletions

View File

@ -507,6 +507,11 @@ wasm_runtime_destroy_exec_env(WASMExecEnv *exec_env);
WASM_RUNTIME_API_EXTERN WASMModuleInstanceCommon *
wasm_runtime_get_module_inst(WASMExecEnv *exec_env);
/* See wasm_export.h for description */
WASM_RUNTIME_API_EXTERN void
wasm_runtime_set_module_inst(WASMExecEnv *exec_env,
WASMModuleInstanceCommon *const module_inst);
/* See wasm_export.h for description */
WASM_RUNTIME_API_EXTERN void *
wasm_runtime_get_function_attachment(WASMExecEnv *exec_env);