dfxvideo: massive cleanup
[pcsx_rearmed.git] / plugins / dfsound / nullsnd.c
1 #include "stdafx.h"
2 #define _IN_OSS
3 #include "externals.h"
4
5 // SETUP SOUND
6 void SetupSound(void)
7 {
8 }
9
10 // REMOVE SOUND
11 void RemoveSound(void)
12 {
13 }
14
15 // GET BYTES BUFFERED
16 unsigned long SoundGetBytesBuffered(void)
17 {
18   return 0;
19 }
20
21 // FEED SOUND DATA
22 void SoundFeedStreamData(unsigned char* pSound,long lBytes)
23 {
24 }