1 /* 2 * file info.h - display info at level start 3 * 4 * $Id: info.h,v 1.9 2006/02/10 15:07:42 fzago Exp $ 5 * 6 * Program XBLAST 7 * (C) by Oliver Vogel (e-mail: m.vogel@ndh.net) 8 * 9 * This program is free software; you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License as published 11 * by the Free Software Foundation; either version 2; or (at your option) 12 * any later version 13 * 14 * This program is distributed in the hope that it will be entertaining, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILTY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 17 * Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License along 20 * with this program; if not, write to the Free Software Foundation, Inc. 21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 */ 23 #ifndef _INFO_H 24 #define _INFO_H 25 26 /* 27 * prototypes 28 */ 29 extern void ResetInfo (void); 30 extern XBBool ParseLevelInfo (const DBSection * section, DBSection * warn); 31 extern void ClearInfo (void); 32 extern void AddPlayerInfo (const char *fmt, ...); 33 extern void AddLevelInfo (const char *fmt, ...); 34 extern void AddExtraInfo (const char *fmt, ...); 35 extern const char **GetPlayerInfo (int *pNum); 36 extern const char **GetLevelInfo (int *pNum); 37 extern const char **GetExtraInfo (int *pNum); 38 extern unsigned GetGameModeInfo (void); 39 #endif 40 /* 41 * end of file info.h 42 */ 43