summaryrefslogtreecommitdiffstats
path: root/src/private_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/private_types.h')
-rw-r--r--src/private_types.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/private_types.h b/src/private_types.h
index a0337ac..baf5100 100644
--- a/src/private_types.h
+++ b/src/private_types.h
@@ -81,11 +81,14 @@ struct _InstanceImpl {
struct _PluginClass {
- char* uri;
- char* label;
+ struct _World* world;
+ char* parent_uri;
+ char* uri;
+ char* label;
};
-SLV2PluginClass slv2_plugin_class_new(const char* uri, const char* label);
+SLV2PluginClass slv2_plugin_class_new(SLV2World world,
+ const char* parent_uri, const char* uri, const char* label);
void slv2_plugin_class_free(SLV2PluginClass class);
SLV2PluginClasses slv2_plugin_classes_new();