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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal struct GitConfigEntry
    {
        public IntPtr namePtr;
        public IntPtr valuePtr;
        public uint level;
    }
}