00001 /* SCCS Id: @(#)func_tab.h 3.4 1992/04/03 */ 00002 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ 00003 /* NetHack may be freely redistributed. See license for details. */ 00004 00005 #ifndef FUNC_TAB_H 00006 #define FUNC_TAB_H 00007 00008 struct func_tab { 00009 char f_char; 00010 boolean can_if_buried; 00011 int NDECL((*f_funct)); 00012 const char *f_text; 00013 }; 00014 00015 struct ext_func_tab { 00016 const char *ef_txt, *ef_desc; 00017 int NDECL((*ef_funct)); 00018 boolean can_if_buried; 00019 }; 00020 00021 extern struct ext_func_tab extcmdlist[]; 00022 00023 #endif /* FUNC_TAB_H */