From 82f41e72ca8a74bce8e7dd5bf26c7d89b0d652ba Mon Sep 17 00:00:00 2001 From: jwalz Date: Sat, 5 Jan 2002 21:05:47 +0000 Subject: [PATCH] *** empty log message *** --- include/func_tab.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/func_tab.h diff --git a/include/func_tab.h b/include/func_tab.h new file mode 100644 index 000000000..1418674b6 --- /dev/null +++ b/include/func_tab.h @@ -0,0 +1,23 @@ +/* SCCS Id: @(#)func_tab.h 3.3 92/04/03 */ +/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/* NetHack may be freely redistributed. See license for details. */ + +#ifndef FUNC_TAB_H +#define FUNC_TAB_H + +struct func_tab { + char f_char; + boolean can_if_buried; + int NDECL((*f_funct)); + const char *f_text; +}; + +struct ext_func_tab { + const char *ef_txt, *ef_desc; + int NDECL((*ef_funct)); + boolean can_if_buried; +}; + +extern struct ext_func_tab extcmdlist[]; + +#endif /* FUNC_TAB_H */