コード例 #1
0
 public static extern void wasm_trap_message(IntPtr trap, out wasm_byte_vec_t message);
コード例 #2
0
 public static extern ModuleHandle wasm_module_new(StoreHandle store, ref wasm_byte_vec_t bytes);
コード例 #3
0
 public static extern IntPtr wasm_trap_new(StoreHandle store, ref wasm_byte_vec_t message);
コード例 #4
0
 public static extern void wasm_byte_vec_copy(out wasm_byte_vec_t vec, ref wasm_byte_vec_t src);
コード例 #5
0
 public static extern void wasm_byte_vec_delete(ref wasm_byte_vec_t vec);
コード例 #6
0
 public static extern void wasm_byte_vec_new_uninitialized(out wasm_byte_vec_t vec, UIntPtr length);
コード例 #7
0
 public static extern void wasm_byte_vec_new(out wasm_byte_vec_t vec, UIntPtr length, byte[] data);
コード例 #8
0
 public static extern ExternHandle wasmtime_caller_export_get(IntPtr caller, ref wasm_byte_vec_t name);
コード例 #9
0
 public static extern void wasm_byte_vec_new_empty(out wasm_byte_vec_t vec);
コード例 #10
0
 public static extern bool wasmtime_linker_define(LinkerHandle linker, ref wasm_byte_vec_t module, ref wasm_byte_vec_t name, IntPtr externType);
コード例 #11
0
 public static extern bool wasmtime_linker_define_instance(LinkerHandle linker, ref wasm_byte_vec_t name, InstanceHandle instance);
コード例 #12
0
 public static extern bool wasmtime_wat2wasm(ref wasm_byte_vec_t text, out wasm_byte_vec_t bytes, out wasm_byte_vec_t error);
コード例 #13
0
ファイル: Interop.cs プロジェクト: thomastaylor312/wasmtime
 public static extern bool wasmtime_wat2wasm(
     EngineHandle engine,
     ref wasm_byte_vec_t wat,
     out wasm_byte_vec_t vec,
     out wasm_byte_vec_t error_message
     );
コード例 #14
0
ファイル: Interop.cs プロジェクト: tgjones/wasmtime-dotnet
 public static extern IntPtr wasmtime_module_new(StoreHandle store, ref wasm_byte_vec_t bytes, out ModuleHandle module);
コード例 #15
0
ファイル: Interop.cs プロジェクト: tgjones/wasmtime-dotnet
 public static extern void wasmtime_error_message(IntPtr error, out wasm_byte_vec_t message);
コード例 #16
0
ファイル: Interop.cs プロジェクト: tgjones/wasmtime-dotnet
 public static extern IntPtr wasmtime_wat2wasm(ref wasm_byte_vec_t text, out wasm_byte_vec_t bytes);