mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
8d1da3e070
git-svn-id: https://svn.eduke32.com/eduke32@1251 1a8010ca-5511-0410-912e-c29ae57300e0
37 lines
903 B
C
37 lines
903 B
C
#ifndef __sounds_mapster32_h__
|
|
#define __sounds_mapster32_h__
|
|
|
|
#include "build.h"
|
|
|
|
/// vvv sound structs from duke3d.h
|
|
typedef struct {
|
|
int32_t voice;
|
|
int32_t i;
|
|
} SOUNDOWNER;
|
|
|
|
typedef struct {
|
|
int32_t length, num, soundsiz;
|
|
char *filename, *ptr, *filename1;
|
|
SOUNDOWNER SoundOwner[4];
|
|
int16_t ps,pe,vo;
|
|
char pr,m;
|
|
volatile char lock;
|
|
char *definedname; // new
|
|
} sound_t;
|
|
|
|
int32_t S_SoundStartup(void);
|
|
void S_SoundShutdown(void);
|
|
int32_t S_PlaySoundXYZ(int32_t, int32_t, const vec3_t*);
|
|
void S_PlaySound(int32_t);
|
|
int32_t A_PlaySound(uint32_t num, int32_t i);
|
|
void A_StopSound(int32_t num, int32_t i);
|
|
void S_StopSound(int32_t num);
|
|
void S_StopEnvSound(int32_t num,int32_t i);
|
|
void S_Pan3D(void);
|
|
int32_t A_CheckSoundPlaying(int32_t i, int32_t num);
|
|
int32_t S_CheckSoundPlaying(int32_t i, int32_t num);
|
|
void S_ClearSoundLocks(void);
|
|
|
|
#define MAXSOUNDS 2560
|
|
|
|
#endif
|