send-email: accept absolute path even on Windows
[git/dscho.git] / vcs-svn / fast_export.h
blob33a8fe996f5fc025f587c1d09ae3f81e1786dbbb
1 #ifndef FAST_EXPORT_H_
2 #define FAST_EXPORT_H_
4 #include "line_buffer.h"
5 struct strbuf;
7 void fast_export_delete(uint32_t depth, uint32_t *path);
8 void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
9 uint32_t mark);
10 void fast_export_commit(uint32_t revision, const char *author,
11 const struct strbuf *log, const char *uuid,
12 const char *url, unsigned long timestamp);
13 void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
14 struct line_buffer *input);
16 #endif