summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorLars Hjemli <hjemli@gmail.com>2010-06-22 14:16:12 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-06-22 14:16:12 (UTC)
commit6f92f332e6a9ee3e16051bda9fe148607af67f65 (patch) (unidiff)
tree49cb7d145fbf40793b220efdc92cd80ab2c6ca05 /cgit.h
parent37a24e4e39737edaa5cdde501346a65eeb280e63 (diff)
parentd20313e3daf855ee5d4808e050f54614c200d7b1 (diff)
downloadcgit-6f92f332e6a9ee3e16051bda9fe148607af67f65.zip
cgit-6f92f332e6a9ee3e16051bda9fe148607af67f65.tar.gz
cgit-6f92f332e6a9ee3e16051bda9fe148607af67f65.tar.bz2
Merge branch 'jh/context-lines'
Conflicts: cgit.c cgit.h
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h
index 80c3902..2b28d63 100644
--- a/cgit.h
+++ b/cgit.h
@@ -144,12 +144,13 @@ struct cgit_query {
144 int ofs; 144 int ofs;
145 int nohead; 145 int nohead;
146 char *sort; 146 char *sort;
147 int showmsg; 147 int showmsg;
148 int ssdiff; 148 int ssdiff;
149 int show_all; 149 int show_all;
150 int context;
150 char *vpath; 151 char *vpath;
151}; 152};
152 153
153struct cgit_config { 154struct cgit_config {
154 char *agefile; 155 char *agefile;
155 char *cache_root; 156 char *cache_root;
@@ -275,13 +276,13 @@ extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
275 276
276extern void *cgit_free_commitinfo(struct commitinfo *info); 277extern void *cgit_free_commitinfo(struct commitinfo *info);
277 278
278extern int cgit_diff_files(const unsigned char *old_sha1, 279extern int cgit_diff_files(const unsigned char *old_sha1,
279 const unsigned char *new_sha1, 280 const unsigned char *new_sha1,
280 unsigned long *old_size, unsigned long *new_size, 281 unsigned long *old_size, unsigned long *new_size,
281 int *binary, linediff_fn fn); 282 int *binary, int context, linediff_fn fn);
282 283
283extern void cgit_diff_tree(const unsigned char *old_sha1, 284extern void cgit_diff_tree(const unsigned char *old_sha1,
284 const unsigned char *new_sha1, 285 const unsigned char *new_sha1,
285 filepair_fn fn, const char *prefix); 286 filepair_fn fn, const char *prefix);
286 287
287extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 288extern void cgit_diff_commit(struct commit *commit, filepair_fn fn);