summaryrefslogtreecommitdiff
path: root/plugins/dfsound/nullsnd.c
blob: ebbefa2e966f9e085c44cd484fba45177808c57c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "stdafx.h"
#define _IN_OSS
#include "externals.h"

#if !defined (USEALSA) && !defined (USEOSS)

#warning "Using NULL sound output..."

// SETUP SOUND
void SetupSound(void)
{
}

// REMOVE SOUND
void RemoveSound(void)
{
}

// GET BYTES BUFFERED
unsigned long SoundGetBytesBuffered(void)
{
  return 0;
}

// FEED SOUND DATA
void SoundFeedStreamData(unsigned char* pSound,long lBytes)
{
}

#endif