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

NativeMethods.cs « Wrapper « libgit2sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0119fe6bb213533f09f7194a83fd035d168427f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Runtime.InteropServices;

namespace libgit2sharp.Wrapper
{
    internal static class NativeMethods
    {
        private const string Libgit2 = "libgit2wrap.dll";

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_repository_init(out IntPtr repoPtr, [In] string path, [In] bool isBare);

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_repository_open(out IntPtr repoPtr, [In] string path);

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_repository_open2(out IntPtr repoPtr, [In] string gitDir, [In] string gitObjectDirectory, [In] string gitIndexFile, [In] string gitWorkTree);

        [DllImport(Libgit2)]
        public static extern void wrapped_git_repository_free([In] IntPtr repository);

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_repository_lookup(out IntPtr gitObjectPtr, out git_otype retrievedType, [In] IntPtr repository, [In] string objectId);

        [DllImport(Libgit2)]
        public static extern bool wrapped_git_odb_exists([In] IntPtr repository, [In] string objectId);

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_odb_read_header(out git_rawobj rawObject, [In] IntPtr repository, [In] string objectId);

        [DllImport(Libgit2)]
        public static extern OperationResult wrapped_git_odb_read(out git_rawobj rawObject, [In] IntPtr repository, [In] string objectId);

        [DllImport(Libgit2)]
        // TODO: Try to use a git_person struct
        public static extern OperationResult wrapped_git_apply_tag(out IntPtr tagPtr, [In] IntPtr repository, [In] string targetId, [In] string tagName, [In] string tagMessage, [In] string taggerName, [In] string taggerEmail, [In] ulong taggerTime, [In] int taggerTimezoneOffset);
    }
}