aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/lkc_proto.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /scripts/kconfig/lkc_proto.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'scripts/kconfig/lkc_proto.h')
-rw-r--r--scripts/kconfig/lkc_proto.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/scripts/kconfig/lkc_proto.h b/scripts/kconfig/lkc_proto.h
new file mode 100644
index 000000000000..6dc6d0c48e7a
--- /dev/null
+++ b/scripts/kconfig/lkc_proto.h
@@ -0,0 +1,40 @@
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));