alsa-lib/include/control.h

59 lines
3 KiB
C
Raw Normal View History

1998-08-13 15:42:56 +00:00
/****************************************************************************
* *
* control.h *
* Control Interface *
* *
****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
1999-01-30 18:35:52 +00:00
int snd_card_load(int card);
1998-11-27 15:06:26 +00:00
int snd_cards(void);
unsigned int snd_cards_mask(void);
int snd_card_name(const char *name);
int snd_defaults_card(void);
int snd_defaults_mixer_card(void);
int snd_defaults_mixer_device(void);
int snd_defaults_pcm_card(void);
int snd_defaults_pcm_device(void);
int snd_defaults_rawmidi_card(void);
int snd_defaults_rawmidi_device(void);
1998-11-27 15:06:26 +00:00
int snd_ctl_open(void **handle, int card);
int snd_ctl_close(void *handle);
int snd_ctl_file_descriptor(void *handle);
int snd_ctl_hw_info(void *handle, struct snd_ctl_hw_info *info);
1999-03-27 19:44:51 +00:00
int snd_ctl_switch_list(void *handle, snd_switch_list_t * list);
int snd_ctl_switch_read(void *handle, snd_switch_t * sw);
int snd_ctl_switch_write(void *handle, snd_switch_t * sw);
1998-11-27 15:06:26 +00:00
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);
1999-03-27 19:44:51 +00:00
int snd_ctl_pcm_playback_switch_list(void *handle, int dev, snd_switch_list_t * list);
int snd_ctl_pcm_playback_switch_read(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_pcm_playback_switch_write(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_pcm_record_switch_list(void *handle, int dev, snd_switch_list_t * list);
int snd_ctl_pcm_record_switch_read(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_pcm_record_switch_write(void *handle, int dev, snd_switch_t * sw);
1998-11-27 15:06:26 +00:00
int snd_ctl_mixer_info(void *handle, int dev, snd_mixer_info_t * info);
1999-03-27 19:44:51 +00:00
int snd_ctl_mixer_switch_list(void *handle, int dev, snd_switch_list_t *list);
int snd_ctl_mixer_switch_read(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_mixer_switch_write(void *handle, int dev, snd_switch_t * sw);
1998-11-27 15:06:26 +00:00
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);
1999-03-27 19:44:51 +00:00
int snd_ctl_rawmidi_output_switch_list(void *handle, int dev, snd_switch_list_t *list);
int snd_ctl_rawmidi_output_switch_read(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_rawmidi_output_switch_write(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_rawmidi_input_switch_list(void *handle, int dev, snd_switch_list_t *list);
int snd_ctl_rawmidi_input_switch_read(void *handle, int dev, snd_switch_t * sw);
int snd_ctl_rawmidi_input_switch_write(void *handle, int dev, snd_switch_t * sw);
1998-08-13 15:42:56 +00:00
#ifdef __cplusplus
}
#endif