diff options
Diffstat (limited to 'include/conf.h')
-rw-r--r-- | include/conf.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/conf.h b/include/conf.h index 32d6da36..ded36736 100644 --- a/include/conf.h +++ b/include/conf.h @@ -172,12 +172,18 @@ int snd_config_get_ctl_iface(const snd_config_t *conf); /* Names functions */ +/** + * Device-name list element + */ typedef struct snd_devname snd_devname_t; +/** + * Device-name list element (definition) + */ struct snd_devname { - char *name; - char *comment; - snd_devname_t *next; + char *name; /**< Device name string */ + char *comment; /**< Comments */ + snd_devname_t *next; /**< Next pointer */ }; int snd_names_list(const char *interface, snd_devname_t **list); |