forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitSmartSubtransport.cs
More file actions
36 lines (27 loc) · 1.01 KB
/
GitSmartSubtransport.cs
File metadata and controls
36 lines (27 loc) · 1.01 KB
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
using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitSmartSubtransport
{
static GitSmartSubtransport()
{
GCHandleOffset = Marshal.OffsetOf(typeof(GitSmartSubtransport), "GCHandle").ToInt32();
}
public action_callback Action;
public close_callback Close;
public free_callback Free;
/* The libgit2 structure definition ends here. Subsequent fields are for libgit2sharp bookkeeping. */
public IntPtr GCHandle;
/* The following static fields are not part of the structure definition. */
public static int GCHandleOffset;
public delegate int action_callback(
out IntPtr stream,
IntPtr subtransport,
IntPtr url,
GitSmartSubtransportAction action);
public delegate int close_callback(IntPtr subtransport);
public delegate void free_callback(IntPtr subtransport);
}
}