feat(c-api) Move all types into their own modules.

This commit is contained in:
Ivan Enderlin
2020-09-24 11:41:04 +02:00
parent 44559a9f04
commit 1a0527af78
26 changed files with 993 additions and 933 deletions

View File

@@ -1,6 +1,7 @@
use super::super::store::wasm_store_t;
use super::super::trap::wasm_trap_t;
use super::super::types::{wasm_functype_t, wasm_valkind_enum};
use super::super::value::{wasm_val_inner, wasm_val_t};
use super::super::{wasm_functype_t, wasm_trap_t, wasm_valkind_enum};
use std::convert::TryInto;
use std::ffi::c_void;
use std::ptr::NonNull;