/
niceSOFT
/
alsa-lib
Обзор
Документация
Войти
/
niceSOFT
/
alsa-lib
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/names.c
56 строк
2 KB
Jaroslav Kysela
huge correction of tabulators and whitespaces
07 ноя 2025, 20:09
07 ноя 2025, 20:09
66a3d54
Код
Авторство
О чём код?
/** * \file names.c * \ingroup Configuration * \brief Configuration helper functions - device names * \author Jaroslav Kysela <perex@perex.cz> * \date 2005 * * Provide a list of device names for applications. * * See the \ref conf page for more details. */ /* * Configuration helper functions - device names * Copyright (c) 2005 by Jaroslav Kysela <perex@perex.cz> * * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #include "local.h" #include <stdarg.h> #include <limits.h> #include <sys/stat.h> /** * \brief This function is unimplemented. * \deprecated Since 1.0.14 */ int snd_names_list(const char *iface ATTRIBUTE_UNUSED, snd_devname_t **list ATTRIBUTE_UNUSED) { return -ENXIO; } link_warning(snd_names_list, "Warning: snd_names_list is deprecated, use snd_device_name_hint"); /** * \brief This function is unimplemented. * \deprecated Since 1.0.14 */ void snd_names_list_free(snd_devname_t *list ATTRIBUTE_UNUSED) { } link_warning(snd_names_list_free, "Warning: snd_names_list_free is deprecated, use snd_device_name_free_hint");