Remove unneccessary pragmas

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 18
This commit is contained in:
Simon Howard 2005-07-23 18:56:07 +00:00
parent 1df9202dbf
commit 5d20ead2d8
42 changed files with 189 additions and 183 deletions

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_items.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_items.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -34,14 +37,11 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: d_items.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: d_items.c 18 2005-07-23 18:56:07Z fraggle $";
// We are referring to sprite numbers.
#include "info.h"
#ifdef __GNUG__
#pragma implementation "d_items.h"
#endif
#include "d_items.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_items.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_items.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -32,9 +32,6 @@
#include "doomdef.h"
#ifdef __GNUG__
#pragma interface
#endif
// Weapon info: sprite frames, ammunition use.
@ -55,6 +52,9 @@ extern weaponinfo_t weaponinfo[NUMWEAPONS];
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_main.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_main.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -40,9 +43,6 @@
#include "d_event.h"
#ifdef __GNUG__
#pragma interface
#endif

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_net.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_net.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -33,9 +33,6 @@
#include "d_player.h"
#ifdef __GNUG__
#pragma interface
#endif
//
@ -151,6 +148,9 @@ void TryRunTics (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_player.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_player.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -47,9 +47,6 @@
// as commands per game tick.
#include "d_ticcmd.h"
#ifdef __GNUG__
#pragma interface
#endif
@ -222,6 +219,9 @@ typedef struct
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_think.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_think.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -33,9 +33,6 @@
#define __D_THINK__
#ifdef __GNUG__
#pragma interface
#endif
@ -82,6 +79,9 @@ typedef struct thinker_s
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: d_ticcmd.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: d_ticcmd.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -32,9 +32,6 @@
#include "doomtype.h"
#ifdef __GNUG__
#pragma interface
#endif
// The data sampled per tick (single player)
// and transmitted to other peers (multiplayer).
@ -56,6 +53,9 @@ typedef struct
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: doomdef.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: doomdef.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -36,12 +39,9 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: doomdef.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: doomdef.c 18 2005-07-23 18:56:07Z fraggle $";
#ifdef __GNUG__
#pragma implementation "doomdef.h"
#endif
#include "doomdef.h"
// Location for any defines turned variables.

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: doomstat.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: doomstat.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -35,12 +38,9 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: doomstat.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: doomstat.c 18 2005-07-23 18:56:07Z fraggle $";
#ifdef __GNUG__
#pragma implementation "doomstat.h"
#endif
#include "doomstat.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: doomstat.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: doomstat.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -44,9 +44,6 @@
#include "d_player.h"
#ifdef __GNUG__
#pragma interface
#endif
@ -299,6 +296,9 @@ extern int ticdup;
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: dstrings.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: dstrings.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -35,36 +38,33 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: dstrings.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: dstrings.c 18 2005-07-23 18:56:07Z fraggle $";
#ifdef __GNUG__
#pragma implementation "dstrings.h"
#endif
#include "dstrings.h"
char* endmsg[NUM_QUITMESSAGES+1]=
char* endmsg[] =
{
// DOOM1
QUITMSG,
"please don't leave, there's more\ndemons to toast!",
"let's beat it -- this is turning\ninto a bloodbath!",
"i wouldn't leave if i were you.\ndos is much worse.",
"i wouldn't leave if i were you. \ndos is much worse.",
"you're trying to say you like dos\nbetter than me, right?",
"don't leave yet -- there's a\ndemon around that corner!",
"ya know, next time you come in here\ni'm gonna toast ya.",
"go ahead and leave. see if i care."
"go ahead and leave. see if i care.",
// QuitDOOM II messages
"you want to quit?\nthen, thou hast lost an eighth!",
"don't go now, there's a \ndimensional shambler waiting\nat the dos prompt!",
"don't go now, there's a \ndimensional shambler waiting \nat the dos prompt!",
"get outta here and go back\nto your boring programs.",
"if i were your boss, i'd \n deathmatch ya in a minute!",
"look, bud. you leave now\nand you forfeit your body count!",
"just leave. when you come\nback, i'll be waiting with a bat.",
"you're lucky i don't smack\nyou for thinking about leaving."
"you're lucky i don't smack\nyou for thinking about leaving.",
// FinalDOOM?
"fuck you, pussy!\nget the fuck out!",

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: dstrings.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: dstrings.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -23,6 +23,9 @@
//
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -66,7 +69,7 @@
// Not done in french?
// QuitDOOM messages
#define NUM_QUITMESSAGES 22
#define NUM_QUITMESSAGES 15
extern char* endmsg[];
@ -75,6 +78,9 @@ extern char* endmsg[];
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: i_net.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: i_net.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -34,7 +37,7 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: i_net.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: i_net.c 18 2005-07-23 18:56:07Z fraggle $";
#include <stdlib.h>
#include <string.h>
@ -55,9 +58,6 @@ rcsid[] = "$Id: i_net.c 8 2005-07-23 16:44:57Z fraggle $";
#include "doomstat.h"
#ifdef __GNUG__
#pragma implementation "i_net.h"
#endif
#include "i_net.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: i_net.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: i_net.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __I_NET__
#ifdef __GNUG__
#pragma interface
#endif
@ -48,6 +45,9 @@ void I_NetCmd (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: i_system.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: i_system.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -34,7 +37,7 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: i_system.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: i_system.c 18 2005-07-23 18:56:07Z fraggle $";
#include <stdlib.h>
@ -53,9 +56,6 @@ rcsid[] = "$Id: i_system.c 8 2005-07-23 16:44:57Z fraggle $";
#include "d_net.h"
#include "g_game.h"
#ifdef __GNUG__
#pragma implementation "i_system.h"
#endif
#include "i_system.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: i_system.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: i_system.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -33,9 +33,6 @@
#include "d_ticcmd.h"
#include "d_event.h"
#ifdef __GNUG__
#pragma interface
#endif
// Called by DoomMain.
@ -100,6 +97,9 @@ void I_Error (char *error, ...);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: i_video.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: i_video.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -33,9 +33,6 @@
#include "doomtype.h"
#ifdef __GNUG__
#pragma interface
#endif
// Called by D_DoomMain,
@ -66,6 +63,9 @@ void I_EndRead (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: info.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: info.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -37,15 +40,12 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: info.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: info.c 18 2005-07-23 18:56:07Z fraggle $";
// Data.
#include "sounds.h"
#include "m_fixed.h"
#ifdef __GNUG__
#pragma implementation "info.h"
#endif
#include "info.h"
#include "p_mobj.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: m_bbox.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: m_bbox.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -38,12 +41,9 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: m_bbox.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: m_bbox.c 18 2005-07-23 18:56:07Z fraggle $";
#ifdef __GNUG__
#pragma implementation "m_bbox.h"
#endif
#include "m_bbox.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: m_fixed.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: m_fixed.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//
@ -36,16 +39,13 @@
static const char
rcsid[] = "$Id: m_fixed.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: m_fixed.c 18 2005-07-23 18:56:07Z fraggle $";
#include "stdlib.h"
#include "doomtype.h"
#include "i_system.h"
#ifdef __GNUG__
#pragma implementation "m_fixed.h"
#endif
#include "m_fixed.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: m_fixed.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: m_fixed.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __M_FIXED__
#ifdef __GNUG__
#pragma interface
#endif
//
@ -54,6 +51,9 @@ fixed_t FixedDiv2 (fixed_t a, fixed_t b);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:55 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: m_swap.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: m_swap.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//
@ -35,12 +38,9 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: m_swap.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: m_swap.c 18 2005-07-23 18:56:07Z fraggle $";
#ifdef __GNUG__
#pragma implementation "m_swap.h"
#endif
#include "m_swap.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: m_swap.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: m_swap.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __M_SWAP__
#ifdef __GNUG__
#pragma interface
#endif
// Endianess handling.
@ -55,6 +52,9 @@ long SwapLONG(long);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_inter.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_inter.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//
@ -36,7 +39,7 @@
static const char
rcsid[] = "$Id: p_inter.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: p_inter.c 18 2005-07-23 18:56:07Z fraggle $";
// Data.
@ -55,9 +58,6 @@ rcsid[] = "$Id: p_inter.c 8 2005-07-23 16:44:57Z fraggle $";
#include "s_sound.h"
#ifdef __GNUG__
#pragma implementation "p_inter.h"
#endif
#include "p_inter.h"

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_inter.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_inter.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __P_INTER__
#ifdef __GNUG__
#pragma interface
#endif
boolean P_GivePower(player_t*, int);
@ -44,6 +41,9 @@ boolean P_GivePower(player_t*, int);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_mobj.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_mobj.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -48,9 +48,6 @@
#ifdef __GNUG__
#pragma interface
#endif
@ -298,6 +295,9 @@ typedef struct mobj_s
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_pspr.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_pspr.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -45,9 +45,6 @@
// and the Frame Sequence table.
#include "info.h"
#ifdef __GNUG__
#pragma interface
#endif
//
@ -85,6 +82,9 @@ typedef struct
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_saveg.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_saveg.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __P_SAVEG__
#ifdef __GNUG__
#pragma interface
#endif
// Persistent storage/archiving.
@ -54,6 +51,9 @@ extern byte* save_p;
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_setup.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_setup.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __P_SETUP__
#ifdef __GNUG__
#pragma interface
#endif
// NOT called by W_Ticker. Fixme.
@ -51,6 +48,9 @@ void P_Init (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: p_tick.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: p_tick.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __P_TICK__
#ifdef __GNUG__
#pragma interface
#endif
// Called by C_Ticker,
@ -47,6 +44,9 @@ void P_Ticker (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_bsp.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_bsp.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -30,9 +30,6 @@
#ifndef __R_BSP__
#define __R_BSP__
#ifdef __GNUG__
#pragma interface
#endif
extern seg_t* curline;
@ -75,6 +72,9 @@ void R_RenderBSPNode (int bspnum);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_data.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_data.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -34,9 +34,6 @@
#include "r_defs.h"
#include "r_state.h"
#ifdef __GNUG__
#pragma interface
#endif
// Retrieve column data for span blitting.
byte*
@ -65,6 +62,9 @@ int R_CheckTextureNumForName (char *name);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_defs.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_defs.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -46,9 +46,6 @@
#ifdef __GNUG__
#pragma interface
#endif
@ -493,6 +490,9 @@ typedef struct
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_draw.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_draw.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __R_DRAW__
#ifdef __GNUG__
#pragma interface
#endif
extern lighttable_t* dc_colormap;
@ -118,6 +115,9 @@ void R_DrawViewBorder (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_main.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_main.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -34,9 +34,6 @@
#include "r_data.h"
#ifdef __GNUG__
#pragma interface
#endif
//
@ -175,6 +172,9 @@ void R_SetViewSize (int blocks, int detail);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_plane.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_plane.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -33,9 +33,6 @@
#include "r_data.h"
#ifdef __GNUG__
#pragma interface
#endif
// Visplane related.
@ -90,6 +87,9 @@ R_CheckPlane
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_segs.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_segs.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __R_SEGS__
#ifdef __GNUG__
#pragma interface
#endif
void
@ -47,6 +44,9 @@ R_RenderMaskedSegRange
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_sky.c 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_sky.c 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//
@ -39,7 +42,7 @@
//-----------------------------------------------------------------------------
static const char
rcsid[] = "$Id: r_sky.c 8 2005-07-23 16:44:57Z fraggle $";
rcsid[] = "$Id: r_sky.c 18 2005-07-23 18:56:07Z fraggle $";
// Needed for FRACUNIT.
@ -49,9 +52,6 @@ rcsid[] = "$Id: r_sky.c 8 2005-07-23 16:44:57Z fraggle $";
#include "r_data.h"
#ifdef __GNUG__
#pragma implementation "r_sky.h"
#endif
#include "r_sky.h"
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_sky.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_sky.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __R_SKY__
#ifdef __GNUG__
#pragma interface
#endif
// SKY, store the number for name.
#define SKYFLATNAME "F_SKY1"
@ -51,6 +48,9 @@ void R_InitSkyMap (void);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_state.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_state.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -36,9 +36,6 @@
#ifdef __GNUG__
#pragma interface
#endif
@ -141,6 +138,9 @@ extern visplane_t* ceilingplane;
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:56 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: r_things.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: r_things.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __R_THINGS__
#ifdef __GNUG__
#pragma interface
#endif
#define MAXVISSPRITES 128
@ -79,6 +76,9 @@ R_ClipVisSprite
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:57 fraggle
// Update copyright to GNU GPL
//

View file

@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id: s_sound.h 8 2005-07-23 16:44:57Z fraggle $
// $Id: s_sound.h 18 2005-07-23 18:56:07Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@ -31,9 +31,6 @@
#define __S_SOUND__
#ifdef __GNUG__
#pragma interface
#endif
@ -112,6 +109,9 @@ void S_SetSfxVolume(int volume);
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.3 2005/07/23 18:56:07 fraggle
// Remove unneccessary pragmas
//
// Revision 1.2 2005/07/23 16:44:57 fraggle
// Update copyright to GNU GPL
//