Initial commit.
This commit is contained in:
49
codemp/null/null_snddma.cpp
Normal file
49
codemp/null/null_snddma.cpp
Normal file
@@ -0,0 +1,49 @@
|
||||
|
||||
// snddma_null.c
|
||||
// all other sound mixing is portable
|
||||
|
||||
#include "../client/client.h"
|
||||
|
||||
qboolean gbInsideLoadSound = qfalse; // important to default to this!!!
|
||||
|
||||
qboolean SNDDMA_Init(void)
|
||||
{
|
||||
return qfalse;
|
||||
}
|
||||
|
||||
int SNDDMA_GetDMAPos(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void SNDDMA_Shutdown(void)
|
||||
{
|
||||
}
|
||||
|
||||
void SNDDMA_BeginPainting (void)
|
||||
{
|
||||
}
|
||||
|
||||
void SNDDMA_Submit(void)
|
||||
{
|
||||
}
|
||||
|
||||
sfxHandle_t S_RegisterSound( const char *name ) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void S_StartLocalSound( sfxHandle_t sfxHandle, int channelNum ) {
|
||||
}
|
||||
|
||||
void S_ClearSoundBuffer( void ) {
|
||||
}
|
||||
|
||||
qboolean SND_RegisterAudio_LevelLoadEnd(qboolean something)
|
||||
{
|
||||
return qfalse;
|
||||
}
|
||||
|
||||
int SND_FreeOldestSound(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user