source: MondoRescue/branches/stable/mindi-busybox/scripts/config/lkc_proto.h@ 821

Last change on this file since 821 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 1.6 KB
Line 
1
2/* confdata.c */
3P(conf_parse,void,(const char *name));
4P(conf_read,int,(const char *name));
5P(conf_write,int,(const char *name));
6
7/* menu.c */
8P(rootmenu,struct menu,);
9
10P(menu_is_visible,bool,(struct menu *menu));
11P(menu_get_prompt,const char *,(struct menu *menu));
12P(menu_get_root_menu,struct menu *,(struct menu *menu));
13P(menu_get_parent_menu,struct menu *,(struct menu *menu));
14
15/* symbol.c */
16P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
17P(sym_change_count,int,);
18
19P(sym_lookup,struct symbol *,(const char *name, int isconst));
20P(sym_find,struct symbol *,(const char *name));
21P(sym_re_search,struct symbol **,(const char *pattern));
22P(sym_type_name,const char *,(enum symbol_type type));
23P(sym_calc_value,void,(struct symbol *sym));
24P(sym_get_type,enum symbol_type,(struct symbol *sym));
25P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
26P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
27P(sym_toggle_tristate_value,tristate,(struct symbol *sym));
28P(sym_string_valid,bool,(struct symbol *sym, const char *newval));
29P(sym_string_within_range,bool,(struct symbol *sym, const char *str));
30P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
31P(sym_is_changable,bool,(struct symbol *sym));
32P(sym_get_choice_prop,struct property *,(struct symbol *sym));
33P(sym_get_default_prop,struct property *,(struct symbol *sym));
34P(sym_get_string_value,const char *,(struct symbol *sym));
35
36P(prop_get_type_name,const char *,(enum prop_type type));
37
38/* expr.c */
39P(expr_compare_type,int,(enum expr_type t1, enum expr_type t2));
40P(expr_print,void,(struct expr *e, void (*fn)(void *, const char *), void *data, int prevtoken));
Note: See TracBrowser for help on using the repository browser.