OSDN Git Service

upgrade to 3.6.2
[jnethack/source.git] / win / curses / cursmesg.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 cursmesg.h */
3 /* Copyright (c) Karl Garrison, 2010. */
4 /* NetHack may be freely redistributed.  See license for details. */
5
6 #ifndef CURSMESG_H
7 # define CURSMESG_H
8
9
10 /* Global declarations */
11
12 void curses_message_win_puts(const char *message, boolean recursed);
13 void curses_got_input(void);
14 int curses_block(boolean require_tab);
15 int curses_more(void);
16 void curses_clear_unhighlight_message_window(void);
17 void curses_message_win_getline(const char *prompt, char *answer, int buffer);
18 void curses_last_messages(void);
19 void curses_init_mesg_history(void);
20 void curses_prev_mesg(void);
21 void curses_count_window(const char *count_text);
22 char *curses_getmsghistory(BOOLEAN_P);
23 void curses_putmsghistory(const char *, BOOLEAN_P);
24
25 #endif /* CURSMESG_H */