diff options
Diffstat (limited to 'm_config.h')
-rw-r--r-- | m_config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/m_config.h b/m_config.h index 2805c40fd0..ad5acfc374 100644 --- a/m_config.h +++ b/m_config.h @@ -94,8 +94,8 @@ typedef struct m_config { m_profile_t* profiles; /// Depth when recursively including profiles. int profile_depth; - /// Options defined by the config itself. - struct m_option* self_opts; + + void *optstruct; // struct mpopts or other } m_config_t; /// \defgroup ConfigOptionFlags Config option flags @@ -114,7 +114,8 @@ typedef struct m_config { /** \ingroup Config */ m_config_t* -m_config_new(void); +m_config_new(void *optstruct, + int includefunc(struct m_option *conf, char *filename)); /// Free a config object. void |