Blame src/names.c

Packit Service db8eaa
/**
Packit Service db8eaa
 * \file names.c
Packit Service db8eaa
 * \ingroup Configuration
Packit Service db8eaa
 * \brief Configuration helper functions - device names
Packit Service db8eaa
 * \author Jaroslav Kysela <perex@perex.cz>
Packit Service db8eaa
 * \date 2005
Packit Service db8eaa
 *
Packit Service db8eaa
 * Provide a list of device names for applications.
Packit Service db8eaa
 *
Packit Service db8eaa
 * See the \ref conf page for more details.
Packit Service db8eaa
 */
Packit Service db8eaa
/*
Packit Service db8eaa
 *  Configuration helper functions - device names
Packit Service db8eaa
 *  Copyright (c) 2005 by Jaroslav Kysela <perex@perex.cz>
Packit Service db8eaa
 *
Packit Service db8eaa
 *
Packit Service db8eaa
 *   This library is free software; you can redistribute it and/or modify
Packit Service db8eaa
 *   it under the terms of the GNU Lesser General Public License as
Packit Service db8eaa
 *   published by the Free Software Foundation; either version 2.1 of
Packit Service db8eaa
 *   the License, or (at your option) any later version.
Packit Service db8eaa
 *
Packit Service db8eaa
 *   This program is distributed in the hope that it will be useful,
Packit Service db8eaa
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service db8eaa
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service db8eaa
 *   GNU Lesser General Public License for more details.
Packit Service db8eaa
 *
Packit Service db8eaa
 *   You should have received a copy of the GNU Lesser General Public
Packit Service db8eaa
 *   License along with this library; if not, write to the Free Software
Packit Service db8eaa
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
Packit Service db8eaa
 *
Packit Service db8eaa
 */
Packit Service db8eaa
Packit Service db8eaa
#include <stdarg.h>
Packit Service db8eaa
#include <limits.h>
Packit Service db8eaa
#include <sys/stat.h>
Packit Service db8eaa
#include "local.h"
Packit Service db8eaa
Packit Service db8eaa
/** 
Packit Service db8eaa
 * \brief This function is unimplemented.
Packit Service db8eaa
 * \deprecated Since 1.0.14
Packit Service db8eaa
 */
Packit Service db8eaa
int snd_names_list(const char *iface ATTRIBUTE_UNUSED,
Packit Service db8eaa
		   snd_devname_t **list ATTRIBUTE_UNUSED)
Packit Service db8eaa
{
Packit Service db8eaa
	return -ENXIO;
Packit Service db8eaa
}
Packit Service db8eaa
link_warning(snd_names_list, "Warning: snd_names_list is deprecated, use snd_device_name_hint");
Packit Service db8eaa
Packit Service db8eaa
/**
Packit Service db8eaa
 * \brief This function is unimplemented.
Packit Service db8eaa
 * \deprecated Since 1.0.14
Packit Service db8eaa
 */
Packit Service db8eaa
void snd_names_list_free(snd_devname_t *list ATTRIBUTE_UNUSED)
Packit Service db8eaa
{
Packit Service db8eaa
}
Packit Service db8eaa
link_warning(snd_names_list_free, "Warning: snd_names_list_free is deprecated, use snd_device_name_free_hint");