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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/GitPushUpdate.cs')
-rw-r--r--LibGit2Sharp/Core/GitPushUpdate.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitPushUpdate.cs b/LibGit2Sharp/Core/GitPushUpdate.cs
new file mode 100644
index 00000000..f38697a4
--- /dev/null
+++ b/LibGit2Sharp/Core/GitPushUpdate.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Runtime.InteropServices;
+
+namespace LibGit2Sharp.Core
+{
+ [StructLayout(LayoutKind.Sequential)]
+ internal class GitPushUpdate
+ {
+ IntPtr src_refname;
+ IntPtr dst_refname;
+ GitOid src;
+ GitOid dst;
+ }
+}