Merge branch 'db/svn-fe-code-purge' into svn-fe
* db/svn-fe-code-purge: vcs-svn: drop obj_pool vcs-svn: drop treap vcs-svn: drop string_pool vcs-svn: pass paths through to fast-import Conflicts: vcs-svn/fast_export.c vcs-svn/fast_export.h vcs-svn/repo_tree.c vcs-svn/repo_tree.h vcs-svn/string_pool.c vcs-svn/svndump.c vcs-svn/trp.txt
This commit is contained in:
@ -8,9 +8,8 @@ void fast_export_init(int fd);
|
||||
void fast_export_deinit(void);
|
||||
void fast_export_reset(void);
|
||||
|
||||
void fast_export_delete(uint32_t depth, const uint32_t *path);
|
||||
void fast_export_modify(uint32_t depth, const uint32_t *path,
|
||||
uint32_t mode, const char *dataref);
|
||||
void fast_export_delete(const char *path);
|
||||
void fast_export_modify(const char *path, uint32_t mode, const char *dataref);
|
||||
void fast_export_begin_commit(uint32_t revision, const char *author,
|
||||
const struct strbuf *log, const char *uuid,
|
||||
const char *url, unsigned long timestamp);
|
||||
@ -18,9 +17,9 @@ void fast_export_end_commit(uint32_t revision);
|
||||
void fast_export_data(uint32_t mode, uint32_t len, struct line_buffer *input);
|
||||
|
||||
/* If there is no such file at that rev, returns -1, errno == ENOENT. */
|
||||
int fast_export_ls_rev(uint32_t rev, uint32_t depth, const uint32_t *path,
|
||||
int fast_export_ls_rev(uint32_t rev, const char *path,
|
||||
uint32_t *mode_out, struct strbuf *dataref_out);
|
||||
int fast_export_ls(uint32_t depth, const uint32_t *path,
|
||||
int fast_export_ls(const char *path,
|
||||
uint32_t *mode_out, struct strbuf *dataref_out);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user