1 /*
2  * XPilot NG, a multiplayer space war game.
3  *
4  * Copyright (C) 2003-2004 Kristian S�derblom <kps@users.sourceforge.net>
5  *
6  * Copyright (C) 1991-2001 by
7  *
8  *      Bj�rn Stabell        <bjoern@xpilot.org>
9  *      Ken Ronny Schouten   <ken@xpilot.org>
10  *      Bert Gijsbers        <bert@xpilot.org>
11  *      Dick Balaska         <dick@xpilot.org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26  */
27 
28 #ifndef XPSERVER_H
29 #define XPSERVER_H
30 
31 #define SERVER
32 #include "xpcommon.h"
33 
34 #ifdef HAVE_LIBEXPAT
35 #  include <expat.h>
36 #else
37 #  error "Header expat.h missing. Please install expat."
38 #endif
39 
40 #ifdef PLOCKSERVER
41 #  ifdef HAVE_SYS_MMAN_H
42 #    include <sys/mman.h>
43 #  elif defined HAVE_SYS_LOCK_H
44 #    include <sys/lock.h>
45 #  endif
46 #endif
47 
48 #include "serverconst.h"
49 #include "object.h"
50 #include "player.h"
51 #include "asteroid.h"
52 #include "cannon.h"
53 #include "connection.h"
54 #include "defaults.h"
55 #include "map.h"
56 #include "modifiers.h"
57 #include "netserver.h"
58 #include "objpos.h"
59 #include "option.h"
60 #include "packet.h"
61 #include "rank.h"
62 #include "recwrap.h"
63 #include "robot.h"
64 #include "saudio.h"
65 #include "sched.h"
66 #include "setup.h"
67 #include "score.h"
68 #include "srecord.h"
69 #include "target.h"
70 #include "teamcup.h"
71 #include "tuner.h"
72 #include "walls.h"
73 #include "wormhole.h"
74 #include "server.h"
75 
76 #endif /* XPSERVER_H */
77