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

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

namespace LibGit2Sharp.Wrapper
{
    [StructLayout(LayoutKind.Sequential)]
    internal struct git_odb_source
    {
        public git_rawobj raw;
        public IntPtr write_ptr;
        public UIntPtr written_bytes;

        [MarshalAs(UnmanagedType.U1)]
        public bool open;
    }
}