mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-05 04:06:34 -05:00
control: remap plugin - add docs
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
7371ac9aad
commit
493a41bcad
3 changed files with 100 additions and 1 deletions
|
|
@ -7,6 +7,9 @@ alsainclude_HEADERS = asoundlib.h asoundef.h \
|
|||
version.h global.h input.h output.h error.h \
|
||||
conf.h control.h
|
||||
|
||||
if BUILD_CTL_PLUGIN
|
||||
alsainclude_HEADERS += control_plugin.h
|
||||
endif
|
||||
if BUILD_CTL_PLUGIN_EXT
|
||||
alsainclude_HEADERS += control_external.h
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -42,7 +42,14 @@
|
|||
* Control HW
|
||||
*/
|
||||
int snd_ctl_hw_open(snd_ctl_t **handle, const char *name, int card, int mode);
|
||||
int _snd_ctl_hw_open(snd_ctl_t **handlep, char *name, snd_config_t *root ATTRIBUTE_UNUSED, snd_config_t *conf, int mode);
|
||||
int _snd_ctl_hw_open(snd_ctl_t **handlep, char *name, snd_config_t *root, snd_config_t *conf, int mode);
|
||||
|
||||
/*
|
||||
* Control Remap & Map
|
||||
*/
|
||||
int snd_ctl_remap_open(snd_ctl_t **handlep, const char *name, snd_config_t *remap,
|
||||
snd_config_t *map, snd_ctl_t *child, int mode);
|
||||
int _snd_ctl_remap_open(snd_ctl_t **handlep, char *name, snd_config_t *root, snd_config_t *conf, int mode);
|
||||
|
||||
/** \} */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue