1d5ac70f0Sopenharmony_ci/*
2d5ac70f0Sopenharmony_ci *  Control Symbols
3d5ac70f0Sopenharmony_ci *  Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
4d5ac70f0Sopenharmony_ci *
5d5ac70f0Sopenharmony_ci *   This library is free software; you can redistribute it and/or modify
6d5ac70f0Sopenharmony_ci *   it under the terms of the GNU Lesser General Public License as
7d5ac70f0Sopenharmony_ci *   published by the Free Software Foundation; either version 2.1 of
8d5ac70f0Sopenharmony_ci *   the License, or (at your option) any later version.
9d5ac70f0Sopenharmony_ci *
10d5ac70f0Sopenharmony_ci *   This program is distributed in the hope that it will be useful,
11d5ac70f0Sopenharmony_ci *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12d5ac70f0Sopenharmony_ci *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13d5ac70f0Sopenharmony_ci *   GNU Lesser General Public License for more details.
14d5ac70f0Sopenharmony_ci *
15d5ac70f0Sopenharmony_ci *   You should have received a copy of the GNU Lesser General Public
16d5ac70f0Sopenharmony_ci *   License along with this library; if not, write to the Free Software
17d5ac70f0Sopenharmony_ci *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18d5ac70f0Sopenharmony_ci *
19d5ac70f0Sopenharmony_ci */
20d5ac70f0Sopenharmony_ci
21d5ac70f0Sopenharmony_ci#ifndef PIC
22d5ac70f0Sopenharmony_ci
23d5ac70f0Sopenharmony_ciextern const char *_snd_module_control_hw;
24d5ac70f0Sopenharmony_ciextern const char *_snd_module_control_empty;
25d5ac70f0Sopenharmony_ciextern const char *_snd_module_control_remap;
26d5ac70f0Sopenharmony_ciextern const char *_snd_module_control_shm;
27d5ac70f0Sopenharmony_ciextern const char *_snd_module_control_ext;
28d5ac70f0Sopenharmony_ci
29d5ac70f0Sopenharmony_cistatic const char **snd_control_open_objects[] = {
30d5ac70f0Sopenharmony_ci	&_snd_module_control_hw,
31d5ac70f0Sopenharmony_ci	&_snd_module_control_empty,
32d5ac70f0Sopenharmony_ci#include "ctl_symbols_list.c"
33d5ac70f0Sopenharmony_ci};
34d5ac70f0Sopenharmony_ci
35d5ac70f0Sopenharmony_civoid *snd_control_open_symbols(void)
36d5ac70f0Sopenharmony_ci{
37d5ac70f0Sopenharmony_ci	return snd_control_open_objects;
38d5ac70f0Sopenharmony_ci}
39d5ac70f0Sopenharmony_ci
40d5ac70f0Sopenharmony_ci#endif /* !PIC */
41