Attempt #3 for windows

This commit is contained in:
Lachlan Sneff
2019-04-09 16:54:55 -07:00
parent 654fce9354
commit b949de2560

View File

@ -2,7 +2,7 @@ use std::ffi::c_void;
use std::ptr::NonNull;
use wasmer_runtime_core::vm::{Ctx, Func};
type Trampoline = unsafe extern "C" fn(*mut Ctx, NonNull<Func>, *const u64, *mut u64) -> c_void;
type Trampoline = unsafe extern "C" fn(*mut Ctx, NonNull<Func>, *const u64, *mut u64);
type CallProtectedResult = Result<(), CallProtectedData>;
#[repr(C)]