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: 724c6c414f6a9cd65a58825ef3e2eeae6a403495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Runtime.InteropServices;

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

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