aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'config.h.in')
-rw-r--r--config.h.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in
new file mode 100644
index 000000000..7b17b3427
--- /dev/null
+++ b/config.h.in
@@ -0,0 +1,11 @@
+#include <sys/types.h>
+
+/* Forwarded declaration */
+struct module_ctx;
+
+typedef struct module_s {
+ const char *name;
+ int (*module_init_func)(struct module_ctx *ctx);
+} module_t;
+
+extern module_t modules[];