We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700eadb commit 373deb0Copy full SHA for 373deb0
src/wasmer.zig
@@ -1,9 +1,11 @@
1
const std = @import("std");
2
const builtin = @import("builtin");
3
pub const wasm = @import("./wasm.zig");
4
-pub const wasi = @import("./wasi.zig");
+
5
+pub usingnamespace @import("./wasi.zig");
6
7
// Re-exports
8
+pub const ExternVec = wasm.ExternVec;
9
pub const ByteVec = wasm.ByteVec;
10
pub const Engine = wasm.Engine;
11
pub const Store = wasm.Store;
@@ -14,7 +16,6 @@ pub const Func = wasm.Func;
14
16
pub const Memory = wasm.Memory;
15
17
pub const MemoryType = wasm.MemoryType;
18
pub const Limits = wasm.Limits;
-pub const WasiConfig = wasi.WasiConfig;
19
20
const OS_PATH_MAX: usize = switch (builtin.os.tag) {
21
.windows => std.os.windows.MAX_PATH,
0 commit comments