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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal struct GitRemoteHead
    {
        public bool Local;
        public GitOid Oid;
        public GitOid Loid;
        public IntPtr NamePtr;
    }
}