using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace LibGit2Sharp.Core { /// /// A status entry from libgit2. /// [StructLayout(LayoutKind.Sequential)] internal class GitStatusEntry { /// /// Calculated status of a filepath in the working directory considering the current and the . /// public FileStatus Status; /// /// The difference between the and . /// public IntPtr HeadToIndexPtr; /// /// The difference between the and the working directory. /// public IntPtr IndexToWorkDirPtr; } }