aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-11 16:38:30 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-11 16:38:30 +0100
commit5a106eb09b9b5e189b96cc736046a92b054f6c7f (patch)
tree7172123df870c07deb882a4993fa991b31fc9008 /cgit.h
parentRename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.c (diff)
downloadcgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.tar.xz
cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.zip
Move common output-functions into ui-shared.c
While at it, replace the cgit_[lib_]error constants with a proper function Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h
index 6c0aa3b..e64fbd7 100644
--- a/cgit.h
+++ b/cgit.h
@@ -15,6 +15,8 @@ struct cacheitem {
int fd;
};
+extern const char cgit_version[];
+
extern char *cgit_root;
extern char *cgit_root_title;
extern char *cgit_css;
@@ -54,7 +56,6 @@ extern void html_attr(char *txt);
extern void html_link_open(char *url, char *title, char *class);
extern void html_link_close(void);
-
extern int cgit_read_config(const char *filename, configfn fn);
extern int cgit_parse_query(char *txt, configfn fn);
@@ -64,4 +65,10 @@ extern int cache_unlock(struct cacheitem *item);
extern int cache_exist(struct cacheitem *item);
extern int cache_expired(struct cacheitem *item);
+extern void cgit_print_error(char *msg);
+extern void cgit_print_docstart(char *title, struct cacheitem *item);
+extern void cgit_print_docend();
+extern void cgit_print_pageheader(char *title);
+
+
#endif /* CGIT_H */