summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index 08fd95a..d07185c 100644
--- a/cgit.h
+++ b/cgit.h
@@ -97,48 +97,49 @@ struct refinfo {
97 struct commitinfo *commit; 97 struct commitinfo *commit;
98 }; 98 };
99}; 99};
100 100
101struct reflist { 101struct reflist {
102 struct refinfo **refs; 102 struct refinfo **refs;
103 int alloc; 103 int alloc;
104 int count; 104 int count;
105}; 105};
106 106
107struct cgit_query { 107struct cgit_query {
108 int has_symref; 108 int has_symref;
109 int has_sha1; 109 int has_sha1;
110 char *raw; 110 char *raw;
111 char *repo; 111 char *repo;
112 char *page; 112 char *page;
113 char *search; 113 char *search;
114 char *grep; 114 char *grep;
115 char *head; 115 char *head;
116 char *sha1; 116 char *sha1;
117 char *sha2; 117 char *sha2;
118 char *path; 118 char *path;
119 char *name; 119 char *name;
120 char *mimetype; 120 char *mimetype;
121 char *url;
121 int ofs; 122 int ofs;
122}; 123};
123 124
124struct cgit_config { 125struct cgit_config {
125 char *agefile; 126 char *agefile;
126 char *cache_root; 127 char *cache_root;
127 char *clone_prefix; 128 char *clone_prefix;
128 char *css; 129 char *css;
129 char *favicon; 130 char *favicon;
130 char *footer; 131 char *footer;
131 char *index_header; 132 char *index_header;
132 char *index_info; 133 char *index_info;
133 char *logo; 134 char *logo;
134 char *logo_link; 135 char *logo_link;
135 char *module_link; 136 char *module_link;
136 char *repo_group; 137 char *repo_group;
137 char *robots; 138 char *robots;
138 char *root_title; 139 char *root_title;
139 char *root_desc; 140 char *root_desc;
140 char *root_readme; 141 char *root_readme;
141 char *script_name; 142 char *script_name;
142 char *virtual_root; 143 char *virtual_root;
143 int cache_size; 144 int cache_size;
144 int cache_dynamic_ttl; 145 int cache_dynamic_ttl;