From 60fe4aea400930a48a6ab9317f9c9aafdc9c4c23 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 30 Dec 2000 02:25:58 +0000 Subject: [PATCH] forgot these --- configure.in | 1 + include/cdaudio.h | 1 + include/cl_ents.h | 3 +++ include/cl_input.h | 3 --- include/cl_tent.h | 2 ++ include/r_dynamic.h | 3 ++- include/teamplay.h | 2 -- 7 files changed, 9 insertions(+), 6 deletions(-) diff --git a/configure.in b/configure.in index ba5e15d..b09c8ce 100644 --- a/configure.in +++ b/configure.in @@ -60,6 +60,7 @@ AC_CHECK_HEADERS( sys/io.h asm/io.h \ sys/param.h sys/stat.h sys/time.h sys/timeb.h sys/types.h \ sys/socket.h netinet/in.h netdb.h arpa/inet.h sys/filio.h \ + sys/signal.h \ sys/soundcard.h linux/soundcard.h machine/soundcard.h sys/audioio.h \ dmedia/audio.h dsound.h mmsystem.h initguid.h mme/mmsystem.h \ mme/mme_public.h sys/asoundlib.h string.h strings.h memory.h malloc.h \ diff --git a/include/cdaudio.h b/include/cdaudio.h index 8ca9a5a..ac3a0f0 100644 --- a/include/cdaudio.h +++ b/include/cdaudio.h @@ -29,6 +29,7 @@ #ifndef _CDAUDIO_H #define _CDAUDIO_H +#include "qtypes.h" int CDAudio_Init(void); void CDAudio_Play(byte track, qboolean looping); diff --git a/include/cl_ents.h b/include/cl_ents.h index 4dfcf92..5f19fbb 100644 --- a/include/cl_ents.h +++ b/include/cl_ents.h @@ -40,4 +40,7 @@ void CL_ParsePacketEntities (qboolean delta); void CL_SetSolidEntities (void); void CL_ParsePlayerinfo (void); +extern struct cvar_s *cl_deadbodyfilter; +extern struct cvar_s *cl_gibfilter; + #endif diff --git a/include/cl_input.h b/include/cl_input.h index 34f362a..ccc8a6d 100644 --- a/include/cl_input.h +++ b/include/cl_input.h @@ -47,9 +47,6 @@ void CL_ClearStates (void); void CL_SendCmd (void); void CL_SendMove (usercmd_t *cmd); -void CL_ParseTEnt (void); -void CL_UpdateTEnts (void); - void CL_ClearState (void); void CL_ReadPackets (void); diff --git a/include/cl_tent.h b/include/cl_tent.h index 9cb8e72..0e843ab 100644 --- a/include/cl_tent.h +++ b/include/cl_tent.h @@ -34,5 +34,7 @@ void CL_ClearEnts (void); void CL_ClearTEnts (void); void CL_Init_Entity (struct entity_s *ent); struct entity_s **CL_NewTempEntity (void); +void CL_ParseTEnt (void); +void CL_UpdateTEnts (void); #endif diff --git a/include/r_dynamic.h b/include/r_dynamic.h index 10f2763..b981d66 100644 --- a/include/r_dynamic.h +++ b/include/r_dynamic.h @@ -31,7 +31,8 @@ #include "mathlib.h" -void R_RocketTrail (int type, entity_t *ent); +struct entity_s; +void R_RocketTrail (int type, struct entity_s *ent); void R_RunParticleEffect (vec3_t org, int color, int count); void R_RunPuffEffect (vec3_t org, byte type, byte count); void R_RunSpikeEffect (vec3_t org, byte type); diff --git a/include/teamplay.h b/include/teamplay.h index ea0e7f7..816e2ae 100644 --- a/include/teamplay.h +++ b/include/teamplay.h @@ -31,8 +31,6 @@ #include "cvar.h" -extern cvar_t *cl_deadbodyfilter; -extern cvar_t *cl_gibfilter; extern cvar_t *cl_parsesay; extern cvar_t *cl_nofake;