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: 02c2def8b820a02d4f23124f37308818968aeca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
        public IntPtr SymRefTargetPtr;
    }
}