info_func         647 core/conf.c        void        (*info_func)(unsigned short id);
info_func        1052 core/conf.c    static void config_load_defaults(ConfInfo *ci, void (*info_func)(unsigned short id))
info_func        1072 core/conf.c            if (info_func) info_func(ci[i].id);
info_func        1080 core/conf.c            config_load_defaults(confinfo_handlers[i].ci, confinfo_handlers[i].info_func);
info_func        1198 core/conf.c    void config_restore(ConfInfo *ci, const char *filename, void (*info_func)(unsigned short id))
info_func        1237 core/conf.c                                if (info_func) info_func(ci[i].id);
info_func        1278 core/conf.c                    void (*info_func)(unsigned short id) = 0;
info_func        1284 core/conf.c                            info_func = confinfo_handlers[i].info_func;
info_func        1307 core/conf.c                                    if (info_func) info_func(ci[i].id);
info_func        1341 core/conf.c            config_restore(confinfo_handlers[i].ci, confinfo_handlers[i].filename, confinfo_handlers[i].info_func);
info_func        1367 core/conf.c                config_restore(confinfo_handlers[i].ci, (filename != 0) ? filename : confinfo_handlers[i].filename, confinfo_handlers[i].info_func);
info_func        1483 core/conf.c    static int setValue(ConfInfo *ci, unsigned short id, tConfigVal configVal, void (*info_func)(unsigned short id))
info_func        1554 core/conf.c            if (info_func)
info_func        1555 core/conf.c                info_func(id);
info_func        1573 core/conf.c                return setValue(confinfo_handlers[i].ci, id - confinfo_handlers[i].start_id, configVal, confinfo_handlers[i].info_func);
info_func         576 include/conf.h extern void config_restore(ConfInfo *confinfo, const char *filename, void (*info_func)(unsigned short id));