diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -61,13 +61,13 @@ struct cgit_filter { | |||
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 | void (*cleanup)(struct cgit_filter *); |
64 | int argument_count; | ||
64 | }; | 65 | }; |
65 | 66 | ||
66 | struct cgit_exec_filter { | 67 | struct cgit_exec_filter { |
67 | struct cgit_filter base; | 68 | struct cgit_filter base; |
68 | char *cmd; | 69 | char *cmd; |
69 | char **argv; | 70 | char **argv; |
70 | int extra_args; | ||
71 | int old_stdout; | 71 | int old_stdout; |
72 | int pipe_fh[2]; | 72 | int pipe_fh[2]; |
73 | int pid; | 73 | int pid; |
@@ -357,6 +357,7 @@ extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char | |||
357 | 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); |
358 | 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); | 359 | extern void cgit_cleanup_filters(void); |
360 | extern void cgit_init_filters(void); | ||
360 | 361 | ||
361 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); | 362 | extern void cgit_prepare_repo_env(struct cgit_repo * repo); |
362 | 363 | ||