Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GitSmartSubtransportRegistration.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e721c1e79290596e9f4673aa27c723645325d184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitSmartSubtransportRegistration
    {
        public IntPtr SubtransportCallback;
        public uint Rpc;
        public uint Param;

        public delegate int create_callback(
            out IntPtr subtransport,
            IntPtr owner,
            IntPtr param);
    }
}