Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
0f1f9833
Commit
0f1f9833
authored
May 24, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add typedefs on some public enums
Apparently this makes things easier to bind in some languages.
parent
5e57cfa1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
10 deletions
+11
-10
include/git2/common.h
+7
-6
include/git2/errors.h
+2
-2
include/git2/odb_backend.h
+2
-2
No files found.
include/git2/common.h
View file @
0f1f9833
...
...
@@ -103,10 +103,10 @@ GIT_EXTERN(void) git_libgit2_version(int *major, int *minor, int *rev);
/**
* Combinations of these values describe the capabilities of libgit2.
*/
enum
{
typedef
enum
{
GIT_CAP_THREADS
=
(
1
<<
0
),
GIT_CAP_HTTPS
=
(
1
<<
1
)
};
}
git_cap_t
;
/**
* Query compile time options for libgit2.
...
...
@@ -114,12 +114,13 @@ enum {
* @return A combination of GIT_CAP_* values.
*
* - GIT_CAP_THREADS
* Libgit2 was compiled with thread support. Note that thread support is still to be seen as a
* 'work in progress'.
* Libgit2 was compiled with thread support. Note that thread support is
* still to be seen as a 'work in progress' - basic object lookups are
* believed to be threadsafe, but other operations may not be.
*
* - GIT_CAP_HTTPS
* Libgit2 supports the https:// protocol. This requires the open
ssl library to be
* found when compiling libgit2.
* Libgit2 supports the https:// protocol. This requires the open
ssl
*
library to be
found when compiling libgit2.
*/
GIT_EXTERN
(
int
)
git_libgit2_capabilities
(
void
);
...
...
include/git2/errors.h
View file @
0f1f9833
...
...
@@ -18,7 +18,7 @@
GIT_BEGIN_DECL
/** Generic return codes */
enum
{
typedef
enum
{
GIT_OK
=
0
,
GIT_ERROR
=
-
1
,
GIT_ENOTFOUND
=
-
3
,
...
...
@@ -35,7 +35,7 @@ enum {
GIT_PASSTHROUGH
=
-
30
,
GIT_ITEROVER
=
-
31
,
};
}
git_error_code
;
typedef
struct
{
char
*
message
;
...
...
include/git2/odb_backend.h
View file @
0f1f9833
...
...
@@ -59,11 +59,11 @@ GIT_EXTERN(int) git_odb_backend_loose(git_odb_backend **out, const char *objects
GIT_EXTERN
(
int
)
git_odb_backend_one_pack
(
git_odb_backend
**
out
,
const
char
*
index_file
);
/** Streaming mode */
enum
{
typedef
enum
{
GIT_STREAM_RDONLY
=
(
1
<<
1
),
GIT_STREAM_WRONLY
=
(
1
<<
2
),
GIT_STREAM_RW
=
(
GIT_STREAM_RDONLY
|
GIT_STREAM_WRONLY
),
};
}
git_odb_stream_t
;
/** A stream to read/write from a backend */
struct
git_odb_stream
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment