summaryrefslogtreecommitdiffstatsabout
path: root/utility/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'utility/config.h')
-rw-r--r--utility/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/utility/config.h b/utility/config.h
index 763ef5d..26a4e99 100644
--- a/utility/config.h
+++ b/utility/config.h
@@ -115,6 +115,8 @@ typedef enum {
115 115
116typedef struct config_output_field_t config_output_field_t; 116typedef struct config_output_field_t config_output_field_t;
117 117
118typedef struct parser_func_t parser_func_t;
119
118struct config_output_field_t { 120struct config_output_field_t {
119 const char *field; 121 const char *field;
120 logsql_field_datatype datatype; 122 logsql_field_datatype datatype;
@@ -122,7 +124,7 @@ struct config_output_field_t {
122 const char *def; 124 const char *def;
123 const char *source; 125 const char *source;
124 const char *fname; 126 const char *fname;
125 void *func; 127 parser_func_t *func;
126 const char **args; 128 const char **args;
127 void *data; 129 void *data;
128}; 130};