naspro
view naspro-core/include/NASPRO/core/dl.h @ 163:d7568c8379c1
Initiial DSSI support + reorganization
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Fri Sep 11 13:31:52 2009 +0200 (2009-09-11) |
| parents | include/NASPRO/core/dl.h@2dd66da63e3c |
| children | 71372f617827 |
line source
1 /*
2 * NASPRO - NASPRO Architecture for Sound Processing
3 * Core library
4 *
5 * Copyright (C) 2007-2009 Stefano D'Angelo <zanga.mail@gmail.com>
6 *
7 * See the COPYING file for license conditions.
8 */
10 #ifndef _NACORE_DL_H
11 #define _NACORE_DL_H
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
17 typedef struct _nacore_dl_module * nacore_dl_module_t;
19 nacore_dl_module_t nacore_dl_open(const char *file);
20 void * nacore_dl_sym(nacore_dl_module_t handle, const char *symbol);
21 void nacore_dl_close(nacore_dl_module_t handle);
22 char nacore_dl_filename_filter(const char *file);
24 #ifdef __cplusplus
25 }
26 #endif
28 #endif /* !_NACORE_DL_H */
