blob: ecdb9659b67d245da75eb60c82d3f4c070d1d68b [file] [log] [blame]
Patrick Georgid5208402014-04-11 20:24:06 +02001#include <stdarg.h>
Patrick Georgi0588d192009-08-12 15:00:51 +00002
3/* confdata.c */
4P(conf_parse,void,(const char *name));
5P(conf_read,int,(const char *name));
6P(conf_read_simple,int,(const char *name, int));
Patrick Georgid5208402014-04-11 20:24:06 +02007P(conf_write_defconfig,int,(const char *name));
Patrick Georgi0588d192009-08-12 15:00:51 +00008P(conf_write,int,(const char *name));
9P(conf_write_autoconf,int,(void));
10P(conf_get_changed,bool,(void));
11P(conf_set_changed_callback, void,(void (*fn)(void)));
Patrick Georgid5208402014-04-11 20:24:06 +020012P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap)));
Patrick Georgi0588d192009-08-12 15:00:51 +000013
14/* menu.c */
15P(rootmenu,struct menu,);
16
Patrick Georgid5208402014-04-11 20:24:06 +020017P(menu_is_empty, bool, (struct menu *menu));
18P(menu_is_visible, bool, (struct menu *menu));
19P(menu_has_prompt, bool, (struct menu *menu));
Patrick Georgi0588d192009-08-12 15:00:51 +000020P(menu_get_prompt,const char *,(struct menu *menu));
21P(menu_get_root_menu,struct menu *,(struct menu *menu));
22P(menu_get_parent_menu,struct menu *,(struct menu *menu));
23P(menu_has_help,bool,(struct menu *menu));
24P(menu_get_help,const char *,(struct menu *menu));
Patrick Georgid5208402014-04-11 20:24:06 +020025P(get_symbol_str, void, (struct gstr *r, struct symbol *sym, struct list_head
26 *head));
27P(get_relations_str, struct gstr, (struct symbol **sym_arr, struct list_head
28 *head));
29P(menu_get_ext_help,void,(struct menu *menu, struct gstr *help));
Patrick Georgi0588d192009-08-12 15:00:51 +000030
31/* symbol.c */
32P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
33
Roman Zippel543aa7b2008-02-29 05:11:50 +010034P(sym_lookup,struct symbol *,(const char *name, int flags));
Patrick Georgi0588d192009-08-12 15:00:51 +000035P(sym_find,struct symbol *,(const char *name));
Patrick Georgid5208402014-04-11 20:24:06 +020036P(sym_expand_string_value,const char *,(const char *in));
37P(sym_escape_string_value, const char *,(const char *in));
Patrick Georgi0588d192009-08-12 15:00:51 +000038P(sym_re_search,struct symbol **,(const char *pattern));
39P(sym_type_name,const char *,(enum symbol_type type));
40P(sym_calc_value,void,(struct symbol *sym));
41P(sym_get_type,enum symbol_type,(struct symbol *sym));
42P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
43P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
44P(sym_toggle_tristate_value,tristate,(struct symbol *sym));
45P(sym_string_valid,bool,(struct symbol *sym, const char *newval));
46P(sym_string_within_range,bool,(struct symbol *sym, const char *str));
47P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
48P(sym_is_changable,bool,(struct symbol *sym));
49P(sym_get_choice_prop,struct property *,(struct symbol *sym));
50P(sym_get_default_prop,struct property *,(struct symbol *sym));
51P(sym_get_string_value,const char *,(struct symbol *sym));
52
53P(prop_get_type_name,const char *,(enum prop_type type));
54
55/* expr.c */
56P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
57P(expr_print,void,(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken));