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:
authornulltoken <emeric.fermas@gmail.com>2013-09-08 14:24:54 +0400
committernulltoken <emeric.fermas@gmail.com>2013-09-08 14:54:17 +0400
commit8d9fdc9ad3d1c3ab8ba944b16bdb34b768450d13 (patch)
treec5f7c032caaaf828b8f4f66007a8ae165ef1204f /LibGit2Sharp/OdbBackend.cs
parentcfd3c03cda7ec6a100e47cfbb1971f035fae5fd6 (diff)
Add GIT_EUSER to OdbBackend exposed return codes
Diffstat (limited to 'LibGit2Sharp/OdbBackend.cs')
-rw-r--r--LibGit2Sharp/OdbBackend.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/LibGit2Sharp/OdbBackend.cs b/LibGit2Sharp/OdbBackend.cs
index 35a4c6af..03e9f3a5 100644
--- a/LibGit2Sharp/OdbBackend.cs
+++ b/LibGit2Sharp/OdbBackend.cs
@@ -650,6 +650,11 @@ namespace LibGit2Sharp
/// The given short oid is ambiguous.
/// </summary>
GIT_EAMBIGUOUS = -5,
+
+ /// <summary>
+ /// Interruption of the foreach() callback is requested.
+ /// </summary>
+ GIT_EUSER = -7,
}
}
}