Added WasmPtr and MemoryView to the wasmer API

This commit is contained in:
Syrus
2020-04-27 19:10:39 -07:00
parent 31d5691ed5
commit 26a5683071
9 changed files with 588 additions and 10 deletions

View File

@@ -5,7 +5,9 @@ mod exports;
mod externals;
mod import_object;
mod instance;
mod memory_view;
mod module;
mod ptr;
mod store;
mod types;
@@ -13,7 +15,9 @@ pub use crate::exports::{ExportError, Exportable, Exports};
pub use crate::externals::{Extern, Func, Global, Memory, Table};
pub use crate::import_object::{ImportObject, ImportObjectIterator, LikeNamespace};
pub use crate::instance::Instance;
pub use crate::memory_view::MemoryView;
pub use crate::module::Module;
pub use crate::ptr::{Array, Item, WasmPtr};
pub use crate::store::{Engine, Store, StoreObject};
pub use crate::types::{
AnyRef, ExportType, ExternType, FuncType, GlobalType, HostInfo, HostRef, ImportType,