mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Extended for switch interface for mixer/pcm/rawmidi...
This commit is contained in:
parent
67188280d0
commit
d9579f4b1c
2 changed files with 364 additions and 1 deletions
|
|
@ -24,8 +24,30 @@ int snd_ctl_switch_write( void *handle, int switchn, struct snd_ctl_switch *data
|
|||
int snd_ctl_pcm_info( void *handle, int dev, snd_pcm_info_t *info );
|
||||
int snd_ctl_pcm_playback_info( void *handle, int dev, snd_pcm_playback_info_t *info );
|
||||
int snd_ctl_pcm_record_info( void *handle, int dev, snd_pcm_record_info_t *info );
|
||||
int snd_ctl_pcm_playback_switches( void *handle, int dev );
|
||||
int snd_ctl_pcm_playback_switch( void *handle, int dev, const char *channel_id );
|
||||
int snd_ctl_pcm_playback_switch_read( void *handle, int dev, int switchn, snd_pcm_switch_t *data );
|
||||
int snd_ctl_pcm_playback_switch_write( void *handle, int dev, int switchn, snd_pcm_switch_t *data );
|
||||
int snd_ctl_pcm_record_switches( void *handle, int dev );
|
||||
int snd_ctl_pcm_record_switch( void *handle, int dev, const char *channel_id );
|
||||
int snd_ctl_pcm_record_switch_read( void *handle, int dev, int switchn, snd_pcm_switch_t *data );
|
||||
int snd_ctl_pcm_record_switch_write( void *handle, int dev, int switchn, snd_pcm_switch_t *data );
|
||||
int snd_ctl_mixer_info( void *handle, int dev, snd_mixer_info_t *info );
|
||||
int snd_ctl_mixer_switches( void *handle, int dev );
|
||||
int snd_ctl_mixer_switch( void *handle, int dev, const char *channel_id );
|
||||
int snd_ctl_mixer_switch_read( void *handle, int dev, int switchn, snd_mixer_switch_t *data );
|
||||
int snd_ctl_mixer_switch_write( void *handle, int dev, int switchn, snd_mixer_switch_t *data );
|
||||
int snd_ctl_rawmidi_info( void *handle, int dev, snd_rawmidi_info_t *info );
|
||||
int snd_ctl_rawmidi_output_info( void *handle, int dev, snd_rawmidi_output_info_t *info );
|
||||
int snd_ctl_rawmidi_input_info( void *handle, int dev, snd_rawmidi_input_info_t *info );
|
||||
int snd_ctl_rawmidi_output_switches( void *handle, int dev );
|
||||
int snd_ctl_rawmidi_output_switch( void *handle, int dev, const char *channel_id );
|
||||
int snd_ctl_rawmidi_output_switch_read( void *handle, int dev, int switchn, snd_rawmidi_switch_t *data );
|
||||
int snd_ctl_rawmidi_output_switch_write( void *handle, int dev, int switchn, snd_rawmidi_switch_t *data );
|
||||
int snd_ctl_rawmidi_input_switches( void *handle, int dev );
|
||||
int snd_ctl_rawmidi_input_switch( void *handle, int dev, const char *channel_id );
|
||||
int snd_ctl_rawmidi_input_switch_read( void *handle, int dev, int switchn, snd_rawmidi_switch_t *data );
|
||||
int snd_ctl_rawmidi_input_switch_write( void *handle, int dev, int switchn, snd_rawmidi_switch_t *data );
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue