aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/wave.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-12-28 13:12:45 -0800
committerChris Robinson <[email protected]>2009-12-28 13:12:45 -0800
commitc9a08fc7b235425058d3e28ddc46ae56dc726d7d (patch)
treee7f7fce4fcbcf5b319fc097076181c1d8e3bcc4e /Alc/wave.c
parent69ab93a8240d6272c3fbd86e65b7baca516ec8de (diff)
Remove some unneeded functions
Diffstat (limited to 'Alc/wave.c')
-rw-r--r--Alc/wave.c38
1 files changed, 5 insertions, 33 deletions
diff --git a/Alc/wave.c b/Alc/wave.c
index 5496e16e..09c8a63b 100644
--- a/Alc/wave.c
+++ b/Alc/wave.c
@@ -288,34 +288,6 @@ static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceNam
return ALC_FALSE;
}
-static void wave_close_capture(ALCdevice *pDevice)
-{
- (void)pDevice;
-}
-
-static void wave_start_capture(ALCdevice *pDevice)
-{
- (void)pDevice;
-}
-
-static void wave_stop_capture(ALCdevice *pDevice)
-{
- (void)pDevice;
-}
-
-static void wave_capture_samples(ALCdevice *pDevice, ALCvoid *pBuffer, ALCuint lSamples)
-{
- (void)pDevice;
- (void)pBuffer;
- (void)lSamples;
-}
-
-static ALCuint wave_available_samples(ALCdevice *pDevice)
-{
- (void)pDevice;
- return 0;
-}
-
BackendFuncs wave_funcs = {
wave_open_playback,
@@ -323,11 +295,11 @@ BackendFuncs wave_funcs = {
wave_reset_playback,
wave_stop_playback,
wave_open_capture,
- wave_close_capture,
- wave_start_capture,
- wave_stop_capture,
- wave_capture_samples,
- wave_available_samples
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL
};
void alc_wave_init(BackendFuncs *func_list)