diff options
author | David Robillard <d@drobilla.net> | 2011-02-11 01:07:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-11 01:07:33 +0000 |
commit | ad69b46ed592c3f8b680f29653702b03b0559963 (patch) | |
tree | 1c4e355074dddbc9c7795c0402b4c11669cc05f7 /src/slv2_internal.h | |
parent | 7cc22c3fd0ee9f931a43d6f54be2b3be1cb09050 (diff) | |
download | lilv-ad69b46ed592c3f8b680f29653702b03b0559963.tar.gz lilv-ad69b46ed592c3f8b680f29653702b03b0559963.tar.bz2 lilv-ad69b46ed592c3f8b680f29653702b03b0559963.zip |
Use `static' and `SLV2_API' explicitly/consistently.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2915 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index 45a38d2..7cf8d11 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -109,9 +109,7 @@ struct _SLV2Plugin { }; SLV2Plugin slv2_plugin_new(SLV2World world, SLV2Value uri, SLV2Value bundle_uri); -void slv2_plugin_load(SLV2Plugin p); void slv2_plugin_load_if_necessary(SLV2Plugin p); -void slv2_plugin_load_ports_if_necessary(SLV2Plugin p); void slv2_plugin_free(SLV2Plugin plugin); SLV2Value @@ -209,23 +207,6 @@ struct _SLV2World { const uint8_t* slv2_world_blank_node_prefix(SLV2World world); -/** Load all bundles found in \a search_path. - * - * \param search_path A colon-delimited list of directories. These directories - * should contain LV2 bundle directories (ie the search path is a list of - * parent directories of bundles, not a list of bundle directories). - * - * If \a search_path is NULL, \a world will be unmodified. - * Use of this function is \b not recommended. Use \ref slv2_world_load_all. - */ -void -slv2_world_load_path(SLV2World world, - const char* search_path); - - -void -slv2_world_load_specifications(SLV2World world); - void slv2_world_load_file(SLV2World world, const char* file_uri); @@ -282,10 +263,6 @@ static inline SLV2Node slv2_node_copy(SLV2Node node) { static inline void slv2_node_free(SLV2Node node) { } -/* ********* Values ********* */ - -void slv2_values_set_at(SLV2Values list, unsigned index, void* value); - /* ********* Scale Points ********* */ |