feat(c-api) Move memory into its own module.

This commit is contained in:
Ivan Enderlin
2020-09-22 17:21:19 +02:00
parent b63ce6e2cf
commit bc664b011d
4 changed files with 84 additions and 77 deletions

View File

@@ -5,7 +5,8 @@
mod capture_files;
use super::{
wasm_extern_t, wasm_func_t, wasm_instance_t, wasm_memory_t, wasm_module_t, wasm_store_t,
externals::memory::wasm_memory_t, wasm_extern_t, wasm_func_t, wasm_instance_t, wasm_module_t,
wasm_store_t,
};
// required due to really weird Rust resolution rules for macros
// https://github.com/rust-lang/rust/issues/57966