2006-03-24 08:35:51 +01:00
|
|
|
/* vi: set ts=2:
|
|
|
|
* +-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
* | | Enno Rehling <enno@eressea.de>
|
|
|
|
* | Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
|
|
* | (c) 1998 - 2006 |
|
|
|
|
* | | This program may not be used, modified or distributed
|
|
|
|
* +-------------------+ without prior permission by the authors of Eressea.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-04-16 14:48:55 +02:00
|
|
|
#ifndef H_GMTOOL
|
|
|
|
#define H_GMTOOL
|
2006-03-24 08:35:51 +01:00
|
|
|
|
2006-04-16 14:48:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2006-04-16 15:04:52 +02:00
|
|
|
struct lua_State;
|
2006-05-26 00:34:58 +02:00
|
|
|
struct selection;
|
2006-04-16 14:48:55 +02:00
|
|
|
extern int gmmain(int argc, char *argv[]);
|
|
|
|
extern int curses_readline(struct lua_State * L, const char * prompt);
|
2006-05-25 16:56:10 +02:00
|
|
|
|
2008-05-18 16:31:08 +02:00
|
|
|
extern void highlight_region(struct region *r, int on);
|
|
|
|
extern void select_coordinate(struct selection * selected, int x, int y, int on);
|
2008-04-19 18:12:13 +02:00
|
|
|
extern void run_mapper(void);
|
2006-05-25 16:56:10 +02:00
|
|
|
|
2008-04-19 18:56:15 +02:00
|
|
|
extern int force_color;
|
|
|
|
|
2006-04-16 14:48:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-24 08:35:51 +01:00
|
|
|
|
2006-04-16 14:48:55 +02:00
|
|
|
#endif
|