mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
* configure creates the rogue and xatrix makefiles
* game.h comments and ifdef wrapper cleaned up
This commit is contained in:
parent
8e8ec4fe76
commit
84d1c018f2
2 changed files with 29 additions and 19 deletions
|
@ -61,7 +61,9 @@ AC_CONFIG_FILES([Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
game/Makefile
|
game/Makefile
|
||||||
game/baseq2/Makefile
|
game/baseq2/Makefile
|
||||||
game/ctf/Makefile])
|
game/ctf/Makefile
|
||||||
|
game/xatrix/Makefile
|
||||||
|
game/rogue/Makefile])
|
||||||
# ref_gl/Makefile
|
# ref_gl/Makefile
|
||||||
# ref_soft/Makefile])
|
# ref_soft/Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
44
game/game.h
44
game/game.h
|
@ -1,25 +1,31 @@
|
||||||
/*
|
/* $Id$
|
||||||
Copyright (C) 1997-2001 Id Software, Inc.
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
#ifndef __GAME_H__
|
||||||
modify it under the terms of the GNU General Public License
|
#define __GAME_H__
|
||||||
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.
|
|
||||||
|
|
||||||
*/
|
|
||||||
#include "gcc_attr.h"
|
#include "gcc_attr.h"
|
||||||
|
|
||||||
// game.h -- game dll information visible to server
|
|
||||||
|
|
||||||
#define GAME_API_VERSION 3
|
#define GAME_API_VERSION 3
|
||||||
|
|
||||||
|
@ -242,3 +248,5 @@ typedef struct
|
||||||
} game_export_t;
|
} game_export_t;
|
||||||
|
|
||||||
game_export_t *GetGameApi (game_import_t *import);
|
game_export_t *GetGameApi (game_import_t *import);
|
||||||
|
|
||||||
|
#endif /* __GAME_H__ */
|
||||||
|
|
Loading…
Reference in a new issue