summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 48193c7..a3e8d04 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -32,10 +32,8 @@ extern "C" {
#include "slv2/lv2_ui.h"
-
/* ********* PORT ********* */
-
/** Reference to a port on some plugin. */
struct _SLV2Port {
uint32_t index; ///< lv2:index
@@ -49,10 +47,8 @@ SLV2Port slv2_port_new(SLV2World world, uint32_t index, const char* symbol);
void slv2_port_free(SLV2Port port);
-
/* ********* Plugin ********* */
-
/** Record of an installed/available plugin.
*
* A simple reference to a plugin somewhere on the system. This just holds
@@ -81,10 +77,8 @@ librdf_query_results* slv2_plugin_query(SLV2Plugin plugin,
const char* sparql_str);
-
/* ********* Plugins ********* */
-
/** Create a new, empty plugin list.
*
* Returned object must be freed with slv2_plugins_free.
@@ -93,10 +87,8 @@ SLV2Plugins
slv2_plugins_new();
-
/* ********* Instance ********* */
-
/** Pimpl portion of SLV2Instance */
struct _InstanceImpl {
void* lib_handle;
@@ -104,6 +96,7 @@ struct _InstanceImpl {
/* ********* UI Instance ********* */
+
struct _SLV2UIInstanceImpl {
void* lib_handle;
const LV2UI_Descriptor* lv2ui_descriptor;
@@ -114,7 +107,6 @@ struct _SLV2UIInstanceImpl {
/* ********* Plugin Class ********* */
-
struct _SLV2PluginClass {
struct _SLV2World* world;
SLV2Value parent_uri;
@@ -127,15 +119,12 @@ SLV2PluginClass slv2_plugin_class_new(SLV2World world, librdf_uri* parent_uri,
void slv2_plugin_class_free(SLV2PluginClass plugin_class);
-
/* ********* Plugin Classes ********* */
-
SLV2PluginClasses slv2_plugin_classes_new();
void slv2_plugin_classes_free();
-
/* ********* World ********* */
/** Model of LV2 (RDF) data loaded from bundles.
@@ -240,11 +229,9 @@ SLV2ScalePoint slv2_scale_point_new(SLV2Value value, SLV2Value label);
void slv2_scale_point_free(SLV2ScalePoint point);
-/* String utility functions */
+/* ********* Utilities ********* */
char* slv2_strjoin(const char* first, ...);
-
-/* I18N utility functions */
char* slv2_get_lang();