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?

link|improve this question

You are missing the return type of your C++ method. Is it int? – juergen d Jan 17 at 9:12
yes, updated the question – ulu Jan 17 at 9:25
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.