Unidiff1 files changed, 3 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index fc7c7d5..3359be9 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -74,16 +74,19 @@ struct cgit_repo { |
74 | int enable_log_linecount; |
74 | int enable_log_linecount; |
75 | int max_stats; |
75 | int max_stats; |
76 | time_t mtime; |
76 | time_t mtime; |
77 | struct cgit_filter *about_filter; |
77 | struct cgit_filter *about_filter; |
78 | struct cgit_filter *commit_filter; |
78 | struct cgit_filter *commit_filter; |
79 | struct cgit_filter *source_filter; |
79 | struct cgit_filter *source_filter; |
80 | }; |
80 | }; |
81 | |
81 | |
| |
82 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, |
| |
83 | const char *value); |
| |
84 | |
82 | struct cgit_repolist { |
85 | struct cgit_repolist { |
83 | int length; |
86 | int length; |
84 | int count; |
87 | int count; |
85 | struct cgit_repo *repos; |
88 | struct cgit_repo *repos; |
86 | }; |
89 | }; |
87 | |
90 | |
88 | struct commitinfo { |
91 | struct commitinfo { |
89 | struct commit *commit; |
92 | struct commit *commit; |
|