Gongyu Deng
Gongyu Deng
It's ok, thanks for this quick note :)
Such kind of key binding works well indeed. However, it now makes `u` confuse me. It considers the combination as the combination itself, so I need to `undo` for 3...
> Hope those two are helpful: > > * https://bytecodealliance.github.io/wamr.dev/blog/the-wasm-host-sharing-data-basics/ > > * https://bytecodealliance.github.io/wamr.dev/blog/the-wasm-host-sharing-data-challenges/ Thank you very much for your helpful information! > This issue is still difficult to solve:...
I made a simple [POC](https://github.com/MrHate/wasm-micro-runtime/commit/17481a0630742966a6302ae04c713add7099c63d) working in a less risky way: Sample: ```c uint32_t app_buf = 0; char *dummy_buf = NULL, *p = NULL; char hello_txt[] = "Hello mremap."; app_buf...
For example, I have my code using wasmer with c-api like the following: ```c ... instance = wasm_instance_new(store, module, &imports, NULL); if (!instance) { fprintf(stderr, "Err instantiating.\n"); goto init_fail; }...