First try to mark some things in m_config correctly as const

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25253 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-12-02 15:35:58 +00:00
parent 41ac28984c
commit e42550302c
2 changed files with 11 additions and 11 deletions

View File

@ -29,7 +29,7 @@ static int
show_profile(m_option_t *opt, char* name, char *param); show_profile(m_option_t *opt, char* name, char *param);
static void static void
m_config_add_option(m_config_t *config, m_option_t *arg, char* prefix); m_config_add_option(m_config_t *config, const m_option_t *arg, const char* prefix);
static int static int
list_options(m_option_t *opt, char* name, char *param); list_options(m_option_t *opt, char* name, char *param);
@ -182,7 +182,7 @@ m_config_pop(m_config_t* config) {
} }
static void static void
m_config_add_option(m_config_t *config, m_option_t *arg, char* prefix) { m_config_add_option(m_config_t *config, const m_option_t *arg, const char* prefix) {
m_config_option_t *co; m_config_option_t *co;
m_config_save_slot_t* sl; m_config_save_slot_t* sl;
@ -206,7 +206,7 @@ m_config_add_option(m_config_t *config, m_option_t *arg, char* prefix) {
// Option with children -> add them // Option with children -> add them
if(arg->type->flags & M_OPT_TYPE_HAS_CHILD) { if(arg->type->flags & M_OPT_TYPE_HAS_CHILD) {
m_option_t *ol = arg->p; const m_option_t *ol = arg->p;
int i; int i;
co->slots = NULL; co->slots = NULL;
for(i = 0 ; ol[i].name != NULL ; i++) for(i = 0 ; ol[i].name != NULL ; i++)
@ -246,7 +246,7 @@ m_config_add_option(m_config_t *config, m_option_t *arg, char* prefix) {
} }
int int
m_config_register_options(m_config_t *config, m_option_t *args) { m_config_register_options(m_config_t *config, const m_option_t *args) {
int i; int i;
#ifdef MP_DEBUG #ifdef MP_DEBUG
@ -374,7 +374,7 @@ m_config_check_option(m_config_t *config, char* arg, char* param) {
} }
m_option_t* const m_option_t*
m_config_get_option(m_config_t *config, char* arg) { m_config_get_option(m_config_t *config, char* arg) {
m_config_option_t *co; m_config_option_t *co;
@ -391,9 +391,9 @@ m_config_get_option(m_config_t *config, char* arg) {
return NULL; return NULL;
} }
void* const void*
m_config_get_option_ptr(m_config_t *config, char* arg) { m_config_get_option_ptr(m_config_t *config, char* arg) {
m_option_t* conf; const m_option_t* conf;
#ifdef MP_DEBUG #ifdef MP_DEBUG
assert(config != NULL); assert(config != NULL);
@ -415,7 +415,7 @@ m_config_print_option_list(m_config_t *config) {
mp_msg(MSGT_CFGPARSER, MSGL_INFO, MSGTR_OptionListHeader); mp_msg(MSGT_CFGPARSER, MSGL_INFO, MSGTR_OptionListHeader);
for(co = config->opts ; co ; co = co->next) { for(co = config->opts ; co ; co = co->next) {
m_option_t* opt = co->opt; const m_option_t* opt = co->opt;
if(opt->type->flags & M_OPT_TYPE_HAS_CHILD) continue; if(opt->type->flags & M_OPT_TYPE_HAS_CHILD) continue;
if(opt->flags & M_OPT_MIN) if(opt->flags & M_OPT_MIN)
sprintf(min,"%-8.0f",opt->min); sprintf(min,"%-8.0f",opt->min);

View File

@ -34,7 +34,7 @@ struct m_config_option {
/// Full name (ie option:subopt). /// Full name (ie option:subopt).
char* name; char* name;
/// Option description. /// Option description.
struct m_option* opt; const struct m_option* opt;
/// Save slot stack. /// Save slot stack.
m_config_save_slot_t* slots; m_config_save_slot_t* slots;
/// See \ref ConfigOptionFlags. /// See \ref ConfigOptionFlags.
@ -120,7 +120,7 @@ m_config_pop(m_config_t* config);
* \return 1 on success, 0 on failure. * \return 1 on success, 0 on failure.
*/ */
int int
m_config_register_options(m_config_t *config, struct m_option *args); m_config_register_options(m_config_t *config, const struct m_option *args);
/// Set an option. /// Set an option.
/** \param config The config object. /** \param config The config object.
@ -144,7 +144,7 @@ m_config_check_option(m_config_t *config, char* arg, char* param);
/** \param config The config object. /** \param config The config object.
* \param arg The option's name. * \param arg The option's name.
*/ */
struct m_option* const struct m_option*
m_config_get_option(m_config_t *config, char* arg); m_config_get_option(m_config_t *config, char* arg);
/// Print a list of all registered options. /// Print a list of all registered options.