naspro
view naspro-core/include/NASPRO/core/lv2api.h @ 173:71372f617827
Totally CMakeized, a bit of doc
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Fri Mar 26 18:54:24 2010 +0200 (2010-03-26) |
| parents | c7f1f52651be |
| children | 4f7243a606b1 |
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_LV2API_H
11 #define _NACORE_LV2API_H
13 #include <lv2.h>
15 #include <NASPRO/core/bridge.h>
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
21 /*
22 * Convenience function to fill a LV2 plugin descriptor with data found in a
23 * NASPRO core plugin descriptor (URI and function pointers).
24 *
25 * lv2_desc is a pointer to the LV2 plugin descriptor to be filled
26 * n_desc is a pointer to the NASPRO core plugin descriptor
27 */
28 void nacore_lv2api_fill_desc(LV2_Descriptor *lv2_desc,
29 struct nacore_descriptor *n_desc);
31 #ifdef __cplusplus
32 }
33 #endif
35 #endif /* !_NACORE_LV2API_H */
