diff options
author | Taylor Holberton <taylorcholberton@gmail.com> | 2016-11-23 13:34:18 -0800 |
---|---|---|
committer | Taylor Holberton <taylorcholberton@gmail.com> | 2016-11-23 13:34:18 -0800 |
commit | ad4d7d706c6c0b8e4233446fa545128af6c73002 (patch) | |
tree | 916d0d5d029f34295e481448aa0b8f5a19e28669 | |
parent | d265c27dc2cd86ddc31f2aaf8a6481075ad6b759 (diff) |
added mixer ctl member documentation
-rw-r--r-- | src/mixer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mixer.c b/src/mixer.c index 1d2cd74..0fe9c99 100644 --- a/src/mixer.c +++ b/src/mixer.c @@ -53,7 +53,9 @@ struct mixer_ctl { /** The mixer that the mixer control belongs to */ struct mixer *mixer; + /** Information on the control's value (i.e. type, number of values) */ struct snd_ctl_elem_info info; + /** A list of string representations of enumerated values (only valid for enumerated controls) */ char **ename; }; |