webperimental: killstack decides stack protects.
[freeciv.git] / client / include / repodlgs_g.h
blob0a471594a7b66303488809fb76602cf11ca51afb
1 /**********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12 ***********************************************************************/
13 #ifndef FC__REPODLGS_G_H
14 #define FC__REPODLGS_G_H
16 /* utility */
17 #include "support.h" /* bool type */
19 /* common */
20 #include "packets.h"
22 /* client */
23 #include "repodlgs_common.h"
25 #include "gui_proto_constructor.h"
27 GUI_FUNC_PROTO(void, science_report_dialog_popup, bool raise)
28 GUI_FUNC_PROTO(void, science_report_dialog_redraw, void)
29 GUI_FUNC_PROTO(void, economy_report_dialog_popup, bool raise)
30 GUI_FUNC_PROTO(void, units_report_dialog_popup, bool raise)
31 GUI_FUNC_PROTO(void, endgame_report_dialog_start,
32 const struct packet_endgame_report *packet)
33 GUI_FUNC_PROTO(void, endgame_report_dialog_player,
34 const struct packet_endgame_player *packet)
36 GUI_FUNC_PROTO(void, real_science_report_dialog_update, void)
37 GUI_FUNC_PROTO(void, real_economy_report_dialog_update, void)
38 GUI_FUNC_PROTO(void, real_units_report_dialog_update, void)
40 /* Actually defined in update_queue.c */
41 void science_report_dialog_update(void);
42 void economy_report_dialog_update(void);
43 void units_report_dialog_update(void);
45 #endif /* FC__REPODLGS_G_H */