miscellaneous formatting
[aNetHack.git] / include / func_tab.h
blobc0570d96892bd8a7271d057e48423546b3485e0d
1 /* NetHack 3.6 func_tab.h $NHDT-Date: 1432512775 2015/05/25 00:12:55 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
2 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3 /* NetHack 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 */