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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitIndexEntry
    {
        internal const ushort GIT_IDXENTRY_VALID = 0x8000;

        public GitIndexTime CTime;
        public GitIndexTime MTime;
        public uint Dev;
        public uint Ino;
        public uint Mode;
        public uint Uid;
        public uint Gid;
        public uint file_size;
        public GitOid Id;
        public ushort Flags;
        public ushort ExtendedFlags;
        public IntPtr Path;
    }
}