Blame src/hwdep/hwdep_symbols.c

Packit 4a16fb
/*
Packit 4a16fb
 *  HwDep Symbols
Packit 4a16fb
 *  Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
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
#ifndef PIC
Packit 4a16fb
Packit 4a16fb
extern const char *_snd_module_hwdep_hw;
Packit 4a16fb
Packit 4a16fb
static const char **snd_hwdep_open_objects[] = {
Packit 4a16fb
	&_snd_module_hwdep_hw
Packit 4a16fb
};
Packit 4a16fb
	
Packit 4a16fb
void *snd_hwdep_open_symbols(void)
Packit 4a16fb
{
Packit 4a16fb
	return snd_hwdep_open_objects;
Packit 4a16fb
}
Packit 4a16fb
Packit 4a16fb
#endif