diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-06-12 11:40:14 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-06-14 17:40:17 +0200 |
commit | b0233216691fc52c6886a7f53c650d56a651cc84 (patch) | |
tree | e7424326ef33a43904419f42683ba95e02443d1d /include/git2/odb_backend.h | |
parent | 0f49a589013d0f5c75cccf75ee2dd6cc99ce3d91 (diff) | |
download | libgit2-b0233216691fc52c6886a7f53c650d56a651cc84.tar.gz |
Remove custom backends
All the custom backend code will be moved to a separate project,
together with the new MySQL backend.
Diffstat (limited to 'include/git2/odb_backend.h')
-rw-r--r-- | include/git2/odb_backend.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/git2/odb_backend.h b/include/git2/odb_backend.h index 796d2b9da..43a1c2d21 100644 --- a/include/git2/odb_backend.h +++ b/include/git2/odb_backend.h @@ -110,10 +110,8 @@ typedef enum { GIT_STREAM_RW = (GIT_STREAM_RDONLY | GIT_STREAM_WRONLY), } git_odb_streammode; - GIT_EXTERN(int) git_odb_backend_pack(git_odb_backend **backend_out, const char *objects_dir); GIT_EXTERN(int) git_odb_backend_loose(git_odb_backend **backend_out, const char *objects_dir); -GIT_EXTERN(int) git_odb_backend_sqlite(git_odb_backend **backend_out, const char *sqlite_db); GIT_END_DECL |