I've got a native library which has a function with the following signature:
int git_remote_download(char **filename, git_remote *remote);
I'm trying to consume it from my managed code like this: (blindly copied from some other code)
[DllImport(libgit2)]
public static extern int git_remote_download(
[MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof (Utf8Marshaler))] out string filename,
RemoteSafeHandle remote);
As I'm getting an AccessViolationException, looks like I'm doing something wrong. How do I declare it properly?
int? – juergen d Jan 17 at 9:12