1 /**
2  * @file congratulations.h
3  * @brief Handle the congratulations
4  * @created 2007-06-01
5  * @date 2012-08-26
6  */
7 /*
8  * copyright (c) 1998-2015 TLK Games all rights reserved
9  * $Id: congratulations.h,v 1.8 2012/08/26 17:09:14 gurumeditation Exp $
10  *
11  * Powermanga is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * Powermanga is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
24  * MA  02110-1301, USA.
25  */
26 #ifndef __CONGRATULATIONS__
27 #define __CONGRATULATIONS__
28 #ifdef __cplusplus
29 extern "C"
30 {
31 #endif
32 /** If TRUE display congratulations */
33   extern bool is_congratulations_enabled;
34 
35   void congratulations_initialize (void);
36   void congratulations (void);
37 #ifdef __cplusplus
38 }
39 #endif
40 #endif
41