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

GitRemoteCallbacks.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7903f567ac81bf69fc20133aa321b45e56cd1e7d (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
using System;
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    /// <summary>
    /// Structure for git_remote_callbacks
    /// </summary>
    [StructLayout(LayoutKind.Sequential)]
    internal struct GitRemoteCallbacks
    {
        internal uint version;

        internal NativeMethods.remote_progress_callback progress;

        internal NativeMethods.remote_completion_callback completion;

        internal NativeMethods.git_cred_acquire_cb acquire_credentials;

        internal NativeMethods.git_transfer_progress_callback download_progress;

        internal NativeMethods.remote_update_tips_callback update_tips;

        internal IntPtr payload;
    }
}