forgot these

This commit is contained in:
Bill Currie 2000-12-30 02:25:58 +00:00
parent ccba39666b
commit 60fe4aea40
7 changed files with 9 additions and 6 deletions

View File

@ -60,6 +60,7 @@ AC_CHECK_HEADERS(
sys/io.h asm/io.h \ sys/io.h asm/io.h \
sys/param.h sys/stat.h sys/time.h sys/timeb.h sys/types.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/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 \ sys/soundcard.h linux/soundcard.h machine/soundcard.h sys/audioio.h \
dmedia/audio.h dsound.h mmsystem.h initguid.h mme/mmsystem.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 \ mme/mme_public.h sys/asoundlib.h string.h strings.h memory.h malloc.h \

View File

@ -29,6 +29,7 @@
#ifndef _CDAUDIO_H #ifndef _CDAUDIO_H
#define _CDAUDIO_H #define _CDAUDIO_H
#include "qtypes.h"
int CDAudio_Init(void); int CDAudio_Init(void);
void CDAudio_Play(byte track, qboolean looping); void CDAudio_Play(byte track, qboolean looping);

View File

@ -40,4 +40,7 @@ void CL_ParsePacketEntities (qboolean delta);
void CL_SetSolidEntities (void); void CL_SetSolidEntities (void);
void CL_ParsePlayerinfo (void); void CL_ParsePlayerinfo (void);
extern struct cvar_s *cl_deadbodyfilter;
extern struct cvar_s *cl_gibfilter;
#endif #endif

View File

@ -47,9 +47,6 @@ void CL_ClearStates (void);
void CL_SendCmd (void); void CL_SendCmd (void);
void CL_SendMove (usercmd_t *cmd); void CL_SendMove (usercmd_t *cmd);
void CL_ParseTEnt (void);
void CL_UpdateTEnts (void);
void CL_ClearState (void); void CL_ClearState (void);
void CL_ReadPackets (void); void CL_ReadPackets (void);

View File

@ -34,5 +34,7 @@ void CL_ClearEnts (void);
void CL_ClearTEnts (void); void CL_ClearTEnts (void);
void CL_Init_Entity (struct entity_s *ent); void CL_Init_Entity (struct entity_s *ent);
struct entity_s **CL_NewTempEntity (void); struct entity_s **CL_NewTempEntity (void);
void CL_ParseTEnt (void);
void CL_UpdateTEnts (void);
#endif #endif

View File

@ -31,7 +31,8 @@
#include "mathlib.h" #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_RunParticleEffect (vec3_t org, int color, int count);
void R_RunPuffEffect (vec3_t org, byte type, byte count); void R_RunPuffEffect (vec3_t org, byte type, byte count);
void R_RunSpikeEffect (vec3_t org, byte type); void R_RunSpikeEffect (vec3_t org, byte type);

View File

@ -31,8 +31,6 @@
#include "cvar.h" #include "cvar.h"
extern cvar_t *cl_deadbodyfilter;
extern cvar_t *cl_gibfilter;
extern cvar_t *cl_parsesay; extern cvar_t *cl_parsesay;
extern cvar_t *cl_nofake; extern cvar_t *cl_nofake;