summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index f10ba05..b8557ac 100644
--- a/cgit.h
+++ b/cgit.h
@@ -15,6 +15,7 @@
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <string-list.h>
18#include <xdiff-interface.h> 19#include <xdiff-interface.h>
19#include <xdiff/xdiff.h> 20#include <xdiff/xdiff.h>
20#include <utf8.h> 21#include <utf8.h>
@@ -179,12 +180,14 @@ struct cgit_config {
179 int max_repodesc_len; 180 int max_repodesc_len;
180 int max_stats; 181 int max_stats;
181 int nocache; 182 int nocache;
183 int noplainemail;
182 int noheader; 184 int noheader;
183 int renamelimit; 185 int renamelimit;
184 int snapshots; 186 int snapshots;
185 int summary_branches; 187 int summary_branches;
186 int summary_log; 188 int summary_log;
187 int summary_tags; 189 int summary_tags;
190 struct string_list mimetypes;
188 struct cgit_filter *commit_filter; 191 struct cgit_filter *commit_filter;
189 struct cgit_filter *source_filter; 192 struct cgit_filter *source_filter;
190}; 193};