Refine wgl native functions call (#225)

This commit is contained in:
Weining
2020-04-02 17:58:46 +08:00
committed by GitHub
parent 30bab1bcc3
commit 374e687938
8 changed files with 340 additions and 331 deletions

View File

@ -362,6 +362,17 @@ wasm_application_execute_func(wasm_module_inst_t module_inst,
const char *
wasm_runtime_get_exception(wasm_module_inst_t module_inst);
/**
* Set exception info of the WASM module instance.
*
* @param module_inst the WASM module instance
*
* @param exception the exception string
*/
void
wasm_runtime_set_exception(wasm_module_inst_t module_inst,
const char *exception);
/**
* Clear exception info of the WASM module instance.
*