blob: 9a948c9ce44edd4732d6beb579266b23b9049cb0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/* confdata.c */
3P(conf_parse,void,(const char *name));
4P(conf_read,int,(const char *name));
Roman Zippel669bfad2006-06-08 22:12:42 -07005P(conf_read_simple,int,(const char *name, int));
Sam Ravnborg7cf3d732010-07-31 23:35:34 +02006P(conf_write_defconfig,int,(const char *name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007P(conf_write,int,(const char *name));
Roman Zippelc955cca2006-06-08 22:12:39 -07008P(conf_write_autoconf,int,(void));
Karsten Wieseb3214292006-12-13 00:34:06 -08009P(conf_get_changed,bool,(void));
Karsten Wiese3b354c52006-12-13 00:34:08 -080010P(conf_set_changed_callback, void,(void (*fn)(void)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12/* menu.c */
13P(rootmenu,struct menu,);
14
Li Zefan22c7eca2010-04-14 11:46:02 +080015P(menu_is_visible, bool, (struct menu *menu));
16P(menu_has_prompt, bool, (struct menu *menu));
Linus Torvalds1da177e2005-04-16 15:20:36 -070017P(menu_get_prompt,const char *,(struct menu *menu));
18P(menu_get_root_menu,struct menu *,(struct menu *menu));
19P(menu_get_parent_menu,struct menu *,(struct menu *menu));
Sam Ravnborg03d29122007-07-21 00:00:36 +020020P(menu_has_help,bool,(struct menu *menu));
21P(menu_get_help,const char *,(struct menu *menu));
nir.tzachar@gmail.com692d97c2009-11-25 12:28:43 +020022P(get_symbol_str, void, (struct gstr *r, struct symbol *sym));
23P(get_relations_str, struct gstr, (struct symbol **sym_arr));
Cheng Renquan6bd59992009-07-12 16:11:44 +080024P(menu_get_ext_help,void,(struct menu *menu, struct gstr *help));
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/* symbol.c */
27P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Roman Zippel5a1aa8a2008-02-29 05:11:50 +010029P(sym_lookup,struct symbol *,(const char *name, int flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -070030P(sym_find,struct symbol *,(const char *name));
31P(sym_re_search,struct symbol **,(const char *pattern));
32P(sym_type_name,const char *,(enum symbol_type type));
33P(sym_calc_value,void,(struct symbol *sym));
34P(sym_get_type,enum symbol_type,(struct symbol *sym));
35P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
36P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
37P(sym_toggle_tristate_value,tristate,(struct symbol *sym));
38P(sym_string_valid,bool,(struct symbol *sym, const char *newval));
39P(sym_string_within_range,bool,(struct symbol *sym, const char *str));
40P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
41P(sym_is_changable,bool,(struct symbol *sym));
42P(sym_get_choice_prop,struct property *,(struct symbol *sym));
43P(sym_get_default_prop,struct property *,(struct symbol *sym));
44P(sym_get_string_value,const char *,(struct symbol *sym));
45
46P(prop_get_type_name,const char *,(enum prop_type type));
47
48/* expr.c */
49P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
Roman Zippelab45d192006-06-08 22:12:47 -070050P(expr_print,void,(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken));