summaryrefslogtreecommitdiff
path: root/kconfig/lkc_proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'kconfig/lkc_proto.h')
-rw-r--r--kconfig/lkc_proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/kconfig/lkc_proto.h b/kconfig/lkc_proto.h
index 1503077..8e69461 100644
--- a/kconfig/lkc_proto.h
+++ b/kconfig/lkc_proto.h
@@ -15,11 +15,13 @@ P(menu_is_visible,bool,(struct menu *menu));
P(menu_get_prompt,const char *,(struct menu *menu));
P(menu_get_root_menu,struct menu *,(struct menu *menu));
P(menu_get_parent_menu,struct menu *,(struct menu *menu));
+P(menu_has_help,bool,(struct menu *menu));
+P(menu_get_help,const char *,(struct menu *menu));
/* symbol.c */
P(symbol_hash,struct symbol *,[SYMBOL_HASHSIZE]);
-P(sym_lookup,struct symbol *,(const char *name, int isconst));
+P(sym_lookup,struct symbol *,(const char *name, int flags));
P(sym_find,struct symbol *,(const char *name));
P(sym_re_search,struct symbol **,(const char *pattern));
P(sym_type_name,const char *,(enum symbol_type type));