diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -60,6 +60,7 @@ struct cgit_filter { | |||
60 | int (*open)(struct cgit_filter *, va_list ap); | 60 | int (*open)(struct cgit_filter *, va_list ap); |
61 | int (*close)(struct cgit_filter *); | 61 | int (*close)(struct cgit_filter *); |
62 | void (*fprintf)(struct cgit_filter *, FILE *, const char *prefix); | 62 | void (*fprintf)(struct cgit_filter *, FILE *, const char *prefix); |
63 | void (*cleanup)(struct cgit_filter *); | ||
63 | }; | 64 | }; |
64 | 65 | ||
65 | struct cgit_exec_filter { | 66 | struct cgit_exec_filter { |
@@ -355,6 +356,7 @@ extern int cgit_close_filter(struct cgit_filter *filter); | |||
355 | extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix); | 356 | extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix); |
356 | extern void cgit_exec_filter_init(struct cgit_exec_filter *filter, char *cmd, char **argv); | 357 | extern void cgit_exec_filter_init(struct cgit_exec_filter *filter, char *cmd, char **argv); |
357 | extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype); | 358 | extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype); |
359 | extern void cgit_cleanup_filters(void); | ||
358 | 360 | ||
359 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); | 361 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); |
360 | 362 | ||