Blame src/names.c

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