We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Well, i'm having troubles with FFI on netcoreapp2 vs all good on netcoreapp3
[DllImport(LIB_NAME, CharSet = CharSet.Ansi)] public static extern FFIExecResult ffi_exec_expr(FFIExpressionHandle ptr, FFIIdentifierKeyValue[] identifier_values, UIntPtr identifier_values_len);
I narrowed the problem to the function return type :
[StructLayout(LayoutKind.Sequential)] internal unsafe struct FFIExecResult { [MarshalAs(UnmanagedType.I1)] public bool is_error; public IntPtr content; public FFIStringHandle GetContent() => new FFIStringHandle(content); }
Is there some other way to hack through this on netcore2 ?
The text was updated successfully, but these errors were encountered:
Source here :
csharp-expr-rs/src-csharp/csharp-expr-rs/Native.cs
Lines 46 to 56 in 420250c
Sorry, something went wrong.
No branches or pull requests
Well, i'm having troubles with FFI on netcoreapp2 vs all good on netcoreapp3
I narrowed the problem to the function return type :
Is there some other way to hack through this on netcore2 ?
The text was updated successfully, but these errors were encountered: