2001-01-25 10:37:55 +01:00
|
|
|
|
/* vi: set ts=2:
|
|
|
|
|
*
|
2001-04-14 13:39:14 +02:00
|
|
|
|
*
|
2003-07-29 11:48:03 +02:00
|
|
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
2001-01-25 10:37:55 +01:00
|
|
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
|
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
|
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
|
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
|
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
|
|
|
*
|
|
|
|
|
* based on:
|
|
|
|
|
*
|
|
|
|
|
* Atlantis v1.0 13 September 1993 Copyright 1993 by Russell Wallace
|
|
|
|
|
* Atlantis v1.7 Copyright 1996 by Alex Schr<EFBFBD>der
|
|
|
|
|
*
|
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
|
* This program may not be sold or used commercially without prior written
|
|
|
|
|
* permission from the authors.
|
|
|
|
|
*/
|
|
|
|
|
|
2003-07-29 11:48:03 +02:00
|
|
|
|
#ifndef H_GC_LAWS
|
|
|
|
|
#define H_GC_LAWS
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2001-01-25 10:37:55 +01:00
|
|
|
|
|
2004-01-12 08:07:52 +01:00
|
|
|
|
extern int writepasswd(void);
|
2001-01-25 10:37:55 +01:00
|
|
|
|
int getoption(void);
|
|
|
|
|
int wanderoff(struct region * r, int p);
|
|
|
|
|
void demographics(void);
|
|
|
|
|
void last_orders(void);
|
|
|
|
|
void find_address(void);
|
2005-11-20 13:58:59 +01:00
|
|
|
|
void update_guards(void);
|
2007-08-10 09:03:23 +02:00
|
|
|
|
extern void deliverMail(struct faction * f, struct region * r, struct unit * u, const char *s, struct unit * receiver);
|
2001-01-25 10:37:55 +01:00
|
|
|
|
|
|
|
|
|
/* eressea-specific. put somewhere else, please. */
|
|
|
|
|
void processorders(void);
|
2007-06-20 02:34:02 +02:00
|
|
|
|
extern struct attrib_type at_germs;
|
2001-12-10 01:13:39 +01:00
|
|
|
|
|
2007-08-09 08:42:37 +02:00
|
|
|
|
extern int dropouts[2];
|
|
|
|
|
extern int * age;
|
|
|
|
|
|
2003-07-29 11:48:03 +02:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-01-25 10:37:55 +01:00
|
|
|
|
#endif
|