diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 7b17b3427..36d67d56e 100644 --- a/config.h.in +++ b/config.h.in @@ -2,10 +2,11 @@ /* Forwarded declaration */ struct module_ctx; +struct config_file; typedef struct module_s { const char *name; - int (*module_init_func)(struct module_ctx *ctx); + int (*module_init_func)(struct config_file *cfg, struct module_ctx **ctx); } module_t; extern module_t modules[]; |