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/Wrapper/git_tag.cs')
-rw-r--r--LibGit2Sharp/Wrapper/git_tag.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/LibGit2Sharp/Wrapper/git_tag.cs b/LibGit2Sharp/Wrapper/git_tag.cs
new file mode 100644
index 00000000..a9cfcc5a
--- /dev/null
+++ b/LibGit2Sharp/Wrapper/git_tag.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Runtime.InteropServices;
+
+namespace LibGit2Sharp.Wrapper
+{
+ [StructLayout(LayoutKind.Sequential)]
+ internal struct git_tag
+ {
+ public git_object tag;
+ public IntPtr target;
+ public git_otype type;
+
+ [MarshalAs(UnmanagedType.LPStr)]
+ public string tag_name;
+
+ public IntPtr tagger;
+
+ [MarshalAs(UnmanagedType.LPStr)]
+ public string message;
+ }
+} \ No newline at end of file