mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-24 04:51:24 +00:00
forgot these
This commit is contained in:
parent
ccba39666b
commit
60fe4aea40
7 changed files with 9 additions and 6 deletions
|
@ -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 \
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#ifndef _CDAUDIO_H
|
||||
#define _CDAUDIO_H
|
||||
|
||||
#include "qtypes.h"
|
||||
|
||||
int CDAudio_Init(void);
|
||||
void CDAudio_Play(byte track, qboolean looping);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue