/********************************************************************** Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ***********************************************************************/ #ifndef __CONSOLE_H #define __CONSOLE_H /* write to console without line-break */ int console_dump(int i,char *message, ...); /* write to console and add line-break */ void console_write(int i,char *message, ...); /* ensure timely update */ void console_flush(void); /* end of turn stuff */ void console_show_prompt(void); /* set rfc-style */ void console_set_style(int i); #endif