Mercurial > hg > vamp-plugin-sdk
changeset 388:4ec736a36546
Minor doc updates
| author | Chris Cannam | 
|---|---|
| date | Wed, 20 May 2015 13:54:27 +0100 | 
| parents | e0697515163f | 
| children | 93683cf9fce3 126a60e6dc4e | 
| files | src/vamp-hostsdk/acsymbols.c vamp-hostsdk/PluginLoader.h vamp/vamp.h | 
| diffstat | 3 files changed, 5 insertions(+), 1 deletions(-) [+] | 
line wrap: on
 line diff
--- a/src/vamp-hostsdk/acsymbols.c Wed Jan 14 16:58:53 2015 +0000 +++ b/src/vamp-hostsdk/acsymbols.c Wed May 20 13:54:27 2015 +0100 @@ -1,6 +1,7 @@ /* These stubs are provided so that autoconf can check library * versions using C symbols only */ +extern void libvamphostsdk_v_2_6_present(void) { } extern void libvamphostsdk_v_2_5_present(void) { } extern void libvamphostsdk_v_2_4_present(void) { } extern void libvamphostsdk_v_2_3_1_present(void) { }
--- a/vamp-hostsdk/PluginLoader.h Wed Jan 14 16:58:53 2015 +0000 +++ b/vamp-hostsdk/PluginLoader.h Wed May 20 13:54:27 2015 +0100 @@ -66,6 +66,9 @@ * class, and are certainly not required to use this actual class. * But we do strongly recommend it. * + * This class is not thread-safe; use it from a single application + * thread, or guard access to it with a mutex. + * * \note This class was introduced in version 1.1 of the Vamp plugin SDK. */
--- a/vamp/vamp.h Wed Jan 14 16:58:53 2015 +0000 +++ b/vamp/vamp.h Wed May 20 13:54:27 2015 +0100 @@ -250,7 +250,7 @@ /** API version with which this descriptor is compatible. */ unsigned int vampApiVersion; - /** Computer-usable name of the plugin. Must not change. [a-zA-Z0-9_] */ + /** Computer-usable name of the plugin. Must not change. [a-zA-Z0-9_-] */ const char *identifier; /** Human-readable name of the plugin. May be translatable. */
