diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index 9b4be26..92e8c55 100644 --- a/cgit.h +++ b/cgit.h | |||
@@ -57,6 +57,13 @@ typedef enum { | |||
57 | } filter_type; | 57 | } filter_type; |
58 | 58 | ||
59 | struct cgit_filter { | 59 | struct cgit_filter { |
60 | int (*open)(struct cgit_filter *, va_list ap); | ||
61 | int (*close)(struct cgit_filter *); | ||
62 | void (*fprintf)(struct cgit_filter *, FILE *, const char *prefix); | ||
63 | }; | ||
64 | |||
65 | struct cgit_exec_filter { | ||
66 | struct cgit_filter base; | ||
60 | char *cmd; | 67 | char *cmd; |
61 | char **argv; | 68 | char **argv; |
62 | int extra_args; | 69 | int extra_args; |
@@ -346,6 +353,7 @@ extern int cgit_parse_snapshots_mask(const char *str); | |||
346 | extern int cgit_open_filter(struct cgit_filter *filter, ...); | 353 | extern int cgit_open_filter(struct cgit_filter *filter, ...); |
347 | extern int cgit_close_filter(struct cgit_filter *filter); | 354 | extern int cgit_close_filter(struct cgit_filter *filter); |
348 | extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix); | 355 | 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); | ||
349 | extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype); | 357 | extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype); |
350 | 358 | ||
351 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); | 359 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); |