diff options
Diffstat (limited to 'controller/ctl-config.h')
-rw-r--r-- | controller/ctl-config.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/controller/ctl-config.h b/controller/ctl-config.h index 3b39f53..7c3631c 100644 --- a/controller/ctl-config.h +++ b/controller/ctl-config.h @@ -75,11 +75,11 @@ typedef struct { } DispatchHandleT; typedef struct ConfigSectionS { - const char *key; - const char *label; - const char *info; - int (*loadCB)(struct ConfigSectionS *section, json_object *sectionJ); - void *handle; + const char *key; + const char *label; + const char *info; + int (*loadCB)(struct ConfigSectionS *section, json_object *sectionJ); + void *handle; } CtlSectionT; typedef struct { @@ -88,6 +88,7 @@ typedef struct { const char *info; const char *version; json_object *requireJ; + json_object *filesJ; CtlSectionT *sections; } CtlConfigT; |