Configuration construction API.
More...
|
CT_CONFIG_API cfg_group_t * | config_group (cfg_group_t *group, const cfg_info_t *info) |
| add a new configuration group to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_int (cfg_group_t *group, const cfg_info_t *info, cfg_int_t cfg) |
| add a new integer field to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_bool (cfg_group_t *group, const cfg_info_t *info, bool initial) |
| add a new yes/no field to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_string (cfg_group_t *group, const cfg_info_t *info, const char *initial) |
| add a new string field to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_vector (cfg_group_t *group, const cfg_info_t *info, vector_t *initial) |
| add a new vector field to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_enum (cfg_group_t *group, const cfg_info_t *info, cfg_enum_t cfg) |
| add a new choice field to a configuration group More...
|
|
CT_CONFIG_API cfg_field_t * | config_flags (cfg_group_t *group, const cfg_info_t *info, cfg_enum_t cfg) |
| add a new flags field to a configuration group More...
|
|
Configuration construction API.
◆ config_bool()
add a new yes/no field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
initial | the initial value for this field |
- Returns
- the new configuration field
Definition at line 126 of file config.c.
◆ config_enum()
add a new choice field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
cfg | the configuration information for this field |
- Returns
- the new configuration field
Definition at line 162 of file config.c.
◆ config_flags()
add a new flags field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
cfg | the configuration information for this field |
- Returns
- the new configuration field
Definition at line 175 of file config.c.
◆ config_group()
add a new configuration group to a configuration group
- Parameters
-
group | the configuration group to add the group to |
info | the information about this group |
- Returns
- the new subgroup
Definition at line 188 of file config.c.
◆ config_int()
add a new integer field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
cfg | the configuration information for this field |
- Returns
- the new configuration field
Definition at line 108 of file config.c.
◆ config_string()
add a new string field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
initial | the initial value for this field |
- Returns
- the new configuration field
Definition at line 138 of file config.c.
◆ config_vector()
add a new vector field to a configuration group
- Parameters
-
group | the configuration group to add the field to |
info | the information about this field |
initial | the initial values for this field |
- Returns
- the new configuration field
Definition at line 150 of file config.c.