OSDN Git Service

upgrade to 3.6.2
[jnethack/source.git] / win / curses / cursstat.h
1 /* vim:set cin ft=c sw=4 sts=4 ts=8 et ai cino=Ls\:0t0(0 : -*- mode:c;fill-column:80;tab-width:8;c-basic-offset:4;indent-tabs-mode:nil;c-file-style:"k&r" -*-*/
2 /* NetHack 3.6 cursstat.h */
3 /* Copyright (c) Karl Garrison, 2010.     */
4 /* NetHack may be freely redistributed.  See license for details. */
5
6 #ifndef CURSSTAT_H
7 # define CURSSTAT_H
8
9 /* Used by handle_stat_change to handle some stats differently. Not an enum
10    because this is how NetHack code generally handles them. */
11 # define STAT_OTHER   0
12 # define STAT_STR     1
13 # define STAT_GOLD    2
14 # define STAT_AC      4
15 # define STAT_TIME    5
16 # define STAT_TROUBLE 6
17
18 /* Global declarations */
19
20 void curses_update_stats();
21 void curses_decrement_highlights(boolean);
22 attr_t curses_color_attr(int nh_color, int bg_color);
23
24 #endif /* CURSSTAT_H */