summaryrefslogtreecommitdiffstats
path: root/slv2/private_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/private_types.h')
-rw-r--r--slv2/private_types.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/slv2/private_types.h b/slv2/private_types.h
index 849e5a2..a9c60bf 100644
--- a/slv2/private_types.h
+++ b/slv2/private_types.h
@@ -27,16 +27,23 @@ extern "C" {
#include <lv2.h>
+/* If you're a user of SLV2, stop reading this file RIGHT NOW.
+ * Unfortunately it needs to be exposed to allow inlining of some things that
+ * really need to be inlined, but these are opaque types. Don't even think
+ * about writing code that depends on any information here....
+ */
+
+
/** Record of an installed/available plugin.
*
* A simple reference to a plugin somewhere on the system. This just holds
* paths of relevant files, the actual data therein isn't loaded into memory.
*/
struct _Plugin {
- unsigned char* plugin_uri;
- unsigned char* bundle_url; // Bundle directory plugin was loaded from
- unsigned char* data_url; // rdfs::seeAlso
- unsigned char* lib_url; // lv2:binary
+ char* plugin_uri;
+ char* bundle_url; // Bundle directory plugin was loaded from
+ char* data_url; // rdfs::seeAlso
+ char* lib_url; // lv2:binary
};