NHDT->ANH, nethack->anethack, nhdat->anhdat
[aNetHack.git] / include / func_tab.h
blobf6107cc34af995478a4683dd974f1b0732825e34
1 /* aNetHack 0.0.1 func_tab.h $ANH-Date: 1432512775 2015/05/25 00:12:55 $ $ANH-Branch: master $:$ANH-Revision: 1.8 $ */
2 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3 /* aNetHack may be freely redistributed. See license for details. */
5 #ifndef FUNC_TAB_H
6 #define FUNC_TAB_H
8 /* extended command flags */
9 #define IFBURIED 0x01 /* can do command when buried */
10 #define AUTOCOMPLETE 0x02 /* command autocompletes */
11 #define WIZMODECMD 0x04 /* wizard-mode command */
12 #define GENERALCMD 0x08 /* general command, does not take game time */
14 struct ext_func_tab {
15 uchar key;
16 const char *ef_txt, *ef_desc;
17 int NDECL((*ef_funct));
18 int flags;
19 const char *f_text;
22 extern struct ext_func_tab extcmdlist[];
24 #endif /* FUNC_TAB_H */