2010-08-08 07:07:17 +02:00
|
|
|
/* vi: set ts=2:
|
|
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
|
|
| (c) 1998 - 2005 | Enno Rehling <enno@eressea.de>
|
|
|
|
+-------------------+
|
|
|
|
|
|
|
|
This program may not be used, modified or distributed
|
|
|
|
without prior permission by the authors of Eressea.
|
|
|
|
*/
|
|
|
|
#ifndef H_GC_XMLREPORT
|
|
|
|
#define H_GC_XMLREPORT
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
extern void xmlreport_cleanup(void);
|
|
|
|
extern void register_xr(void);
|
2010-08-08 07:07:17 +02:00
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
extern int crwritemap(const char *filename);
|
2010-08-08 07:07:17 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|