diff options
author | Chris Robinson <[email protected]> | 2011-08-19 00:23:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-19 00:30:05 -0700 |
commit | 6ba5128f722293a48b58c42385a5e1ff09f26e94 (patch) | |
tree | df52b083b722d5d66ed894807ae155686eb226ae /Alc/solaris.c | |
parent | c96a6c2b1bb90317fd95dfddbec4f492c17fef50 (diff) |
Use separate lists for playback and capture backends
Diffstat (limited to 'Alc/solaris.c')
-rw-r--r-- | Alc/solaris.c | 48 |
1 files changed, 6 insertions, 42 deletions
diff --git a/Alc/solaris.c b/Alc/solaris.c index 9ddc1dc6..b2b8196d 100644 --- a/Alc/solaris.c +++ b/Alc/solaris.c @@ -237,53 +237,17 @@ static void solaris_stop_playback(ALCdevice *device) } -static ALCboolean solaris_open_capture(ALCdevice *device, const ALCchar *deviceName) -{ - (void)device; - (void)deviceName; - return ALC_FALSE; -} - -static void solaris_close_capture(ALCdevice *device) -{ - (void)device; -} - -static void solaris_start_capture(ALCdevice *pDevice) -{ - (void)pDevice; -} - -static void solaris_stop_capture(ALCdevice *pDevice) -{ - (void)pDevice; -} - -static void solaris_capture_samples(ALCdevice *pDevice, ALCvoid *pBuffer, ALCuint lSamples) -{ - (void)pDevice; - (void)pBuffer; - (void)lSamples; -} - -static ALCuint solaris_available_samples(ALCdevice *pDevice) -{ - (void)pDevice; - return 0; -} - - static const BackendFuncs solaris_funcs = { solaris_open_playback, solaris_close_playback, solaris_reset_playback, solaris_stop_playback, - solaris_open_capture, - solaris_close_capture, - solaris_start_capture, - solaris_stop_capture, - solaris_capture_samples, - solaris_available_samples + NULL, + NULL, + NULL, + NULL, + NULL, + NULL }; ALCboolean alc_solaris_init(BackendFuncs *func_list) |