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 2eb09851..63754e6f 100644 --- a/runtime/rsconf.h +++ b/runtime/rsconf.h @@ -93,7 +93,13 @@ struct defaults_s { /* list of modules loaded in this configuration (config specific module list) */ +struct cfgmodules_etry_s { + cfgmodules_etry_t *next; + modInfo_t *pMod; +}; + struct cfgmodules_s { + cfgmodules_etry_t *root; }; /* outchannel-specific data */ |