* configure creates the rogue and xatrix makefiles

* game.h comments and ifdef wrapper cleaned up
This commit is contained in:
Jamie Wilkinson 2002-04-03 03:07:00 +00:00
parent 8e8ec4fe76
commit 84d1c018f2
2 changed files with 29 additions and 19 deletions

View File

@ -61,7 +61,9 @@ AC_CONFIG_FILES([Makefile
src/Makefile
game/Makefile
game/baseq2/Makefile
game/ctf/Makefile])
game/ctf/Makefile
game/xatrix/Makefile
game/rogue/Makefile])
# ref_gl/Makefile
# ref_soft/Makefile])
AC_OUTPUT

View File

@ -1,25 +1,31 @@
/*
Copyright (C) 1997-2001 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
/* $Id$
*
* game dll information visible to server
*
* Copyright (C) 1997-2001 Id Software, Inc.
* Copyright (c) 2002 The Quakeforge Project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __GAME_H__
#define __GAME_H__
#include "gcc_attr.h"
// game.h -- game dll information visible to server
#define GAME_API_VERSION 3
@ -242,3 +248,5 @@ typedef struct
} game_export_t;
game_export_t *GetGameApi (game_import_t *import);
#endif /* __GAME_H__ */