third_party_alsa-lib/test/namehint.c
Jaroslav Kysela 03389a444b change iface argument for namehint function to const char *
remove snd_ctl_iface_conf_name function
2006-10-27 13:31:32 +02:00

23 lines
420 B
C

#include "../include/asoundlib.h"
#include <err.h>
int main(int argc, char *argv[])
{
const char *iface = "pcm";
char **hints, **n;
int err;
if (argc > 1)
iface = argv[1];
err = snd_device_name_hint(-1, iface, &hints);
if (err < 0)
errx(1, "snd_device_name_hint error: %s", snd_strerror(err));
n = hints;
while (*n != NULL) {
printf("%s\n", *n);
n++;
}
snd_device_name_free_hint(hints);
return 0;
}