add API for resetting allocated resamplers
[pulseaudio.git] / src / pulsecore / ltdl-helper.c
blob711396d8e85145dc294e77fe74dea5e5d9043cce
1 /* $Id$ */
3 /***
4 This file is part of PulseAudio.
6 Copyright 2004-2006 Lennart Poettering
7 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
29 #include <stdlib.h>
30 #include <ctype.h>
32 #include <pulse/xmalloc.h>
33 #include <pulse/util.h>
35 #include <pulsecore/core-util.h>
36 #include <pulsecore/macro.h>
38 #include "ltdl-helper.h"
40 pa_void_func_t pa_load_sym(lt_dlhandle handle, const char *module, const char *symbol) {
41 char *sn, *c;
42 pa_void_func_t f;
44 pa_assert(handle);
45 pa_assert(module);
46 pa_assert(symbol);
48 if ((f = ((pa_void_func_t) (long) lt_dlsym(handle, symbol))))
49 return f;
51 /* As the .la files might have been cleansed from the system, we should
52 * try with the ltdl prefix as well. */
54 sn = pa_sprintf_malloc("%s_LTX_%s", module, symbol);
56 for (c = sn; *c; c++)
57 if (!isalnum(*c))
58 *c = '_';
60 f = (pa_void_func_t) (long) lt_dlsym(handle, sn);
61 pa_xfree(sn);
63 return f;