Added code for pcm_surround_next_device

This commit is contained in:
Jaroslav Kysela 2001-04-19 08:31:38 +00:00
parent 7e1f41be73
commit f12e938abd

View file

@ -187,10 +187,11 @@ static int snd_ctl_hw_pcm_next_device(snd_ctl_t *handle, int * device)
return 0; return 0;
} }
extern int snd_pcm_surround_next_device(snd_ctl_t *ctl, snd_pcm_surround_type_t type, int *device);
static int snd_ctl_hw_pcm_surround_next_device(snd_ctl_t *handle, snd_pcm_surround_type_t type, int * device) static int snd_ctl_hw_pcm_surround_next_device(snd_ctl_t *handle, snd_pcm_surround_type_t type, int * device)
{ {
snd_ctl_hw_t *hw = handle->private_data; return snd_pcm_surround_next_device(handle, type, device);
return 0;
} }
static int snd_ctl_hw_pcm_info(snd_ctl_t *handle, snd_pcm_info_t * info) static int snd_ctl_hw_pcm_info(snd_ctl_t *handle, snd_pcm_info_t * info)