lkc_proto.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #include <stdarg.h>
  2. /* confdata.c */
  3. void conf_parse(const char *name);
  4. int conf_read(const char *name);
  5. int conf_read_simple(const char *name, int);
  6. int conf_write_defconfig(const char *name);
  7. int conf_write(const char *name);
  8. int conf_write_autoconf(void);
  9. bool conf_get_changed(void);
  10. void conf_set_changed_callback(void (*fn)(void));
  11. void conf_set_message_callback(void (*fn)(const char *fmt, va_list ap));
  12. /* menu.c */
  13. extern struct menu rootmenu;
  14. bool menu_is_empty(struct menu *menu);
  15. bool menu_is_visible(struct menu *menu);
  16. bool menu_has_prompt(struct menu *menu);
  17. const char * menu_get_prompt(struct menu *menu);
  18. struct menu * menu_get_root_menu(struct menu *menu);
  19. struct menu * menu_get_parent_menu(struct menu *menu);
  20. bool menu_has_help(struct menu *menu);
  21. const char * menu_get_help(struct menu *menu);
  22. struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
  23. void menu_get_ext_help(struct menu *menu, struct gstr *help);
  24. /* symbol.c */
  25. extern struct symbol * symbol_hash[SYMBOL_HASHSIZE];
  26. struct symbol * sym_lookup(const char *name, int flags);
  27. struct symbol * sym_find(const char *name);
  28. const char * sym_expand_string_value(const char *in);
  29. const char * sym_escape_string_value(const char *in);
  30. struct symbol ** sym_re_search(const char *pattern);
  31. const char * sym_type_name(enum symbol_type type);
  32. void sym_calc_value(struct symbol *sym);
  33. enum symbol_type sym_get_type(struct symbol *sym);
  34. bool sym_tristate_within_range(struct symbol *sym,tristate tri);
  35. bool sym_set_tristate_value(struct symbol *sym,tristate tri);
  36. tristate sym_toggle_tristate_value(struct symbol *sym);
  37. bool sym_string_valid(struct symbol *sym, const char *newval);
  38. bool sym_string_within_range(struct symbol *sym, const char *str);
  39. bool sym_set_string_value(struct symbol *sym, const char *newval);
  40. bool sym_is_changable(struct symbol *sym);
  41. struct property * sym_get_choice_prop(struct symbol *sym);
  42. const char * sym_get_string_value(struct symbol *sym);
  43. const char * prop_get_type_name(enum prop_type type);
  44. /* expr.c */
  45. void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);