diff options
Diffstat (limited to 'runtime/rsconf.h')
-rw-r--r-- | runtime/rsconf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/rsconf.h b/runtime/rsconf.h index 5cd6bfd0..2eb09851 100644 --- a/runtime/rsconf.h +++ b/runtime/rsconf.h @@ -91,6 +91,11 @@ struct globals_s { struct defaults_s { }; + +/* list of modules loaded in this configuration (config specific module list) */ +struct cfgmodules_s { +}; + /* outchannel-specific data */ struct outchannels_s { struct outchannel *ochRoot; /* the root of the outchannel list */ @@ -123,6 +128,7 @@ struct rulesets_s { /* the rsconf object */ struct rsconf_s { BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */ + cfgmodules_t modules; globals_t globals; defaults_t defaults; templates_t templates; |