diff options
Diffstat (limited to 'scripts/kconfig/lkc_proto.h')
-rw-r--r-- | scripts/kconfig/lkc_proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/kconfig/lkc_proto.h b/scripts/kconfig/lkc_proto.h index 9a948c9ce44e..17342fef38b9 100644 --- a/scripts/kconfig/lkc_proto.h +++ b/scripts/kconfig/lkc_proto.h | |||
@@ -1,3 +1,4 @@ | |||
1 | #include <stdarg.h> | ||
1 | 2 | ||
2 | /* confdata.c */ | 3 | /* confdata.c */ |
3 | P(conf_parse,void,(const char *name)); | 4 | P(conf_parse,void,(const char *name)); |
@@ -8,6 +9,7 @@ P(conf_write,int,(const char *name)); | |||
8 | P(conf_write_autoconf,int,(void)); | 9 | P(conf_write_autoconf,int,(void)); |
9 | P(conf_get_changed,bool,(void)); | 10 | P(conf_get_changed,bool,(void)); |
10 | P(conf_set_changed_callback, void,(void (*fn)(void))); | 11 | P(conf_set_changed_callback, void,(void (*fn)(void))); |
12 | P(conf_set_message_callback, void,(void (*fn)(const char *fmt, va_list ap))); | ||
11 | 13 | ||
12 | /* menu.c */ | 14 | /* menu.c */ |
13 | P(rootmenu,struct menu,); | 15 | P(rootmenu,struct menu,); |
@@ -28,6 +30,7 @@ P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]); | |||
28 | 30 | ||
29 | P(sym_lookup,struct symbol *,(const char *name, int flags)); | 31 | P(sym_lookup,struct symbol *,(const char *name, int flags)); |
30 | P(sym_find,struct symbol *,(const char *name)); | 32 | P(sym_find,struct symbol *,(const char *name)); |
33 | P(sym_expand_string_value,const char *,(const char *in)); | ||
31 | P(sym_re_search,struct symbol **,(const char *pattern)); | 34 | P(sym_re_search,struct symbol **,(const char *pattern)); |
32 | P(sym_type_name,const char *,(enum symbol_type type)); | 35 | P(sym_type_name,const char *,(enum symbol_type type)); |
33 | P(sym_calc_value,void,(struct symbol *sym)); | 36 | P(sym_calc_value,void,(struct symbol *sym)); |