summaryrefslogtreecommitdiff
path: root/pluginlv2.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2020-05-26 19:54:25 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-05-26 19:54:25 +0200
commitbe64ddf9da525cd5c6757464efc966052731ba71 (patch)
tree80dd28d79cba9af99e1a380eea3022b6aba99ce4 /pluginlv2.h
parent995bbf3352134f19aff227be26c38a55942527eb (diff)
Change LV2_Descriptor and LV2UI_Descriptor signatures in function calls.
Diffstat (limited to 'pluginlv2.h')
-rw-r--r--pluginlv2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pluginlv2.h b/pluginlv2.h
index 8365de7..a0ac413 100644
--- a/pluginlv2.h
+++ b/pluginlv2.h
@@ -192,7 +192,7 @@ public:
void closeWindow() override;
public:
- static LV2_Handle instantiate(const struct _LV2_Descriptor* descriptor,
+ static LV2_Handle instantiate(const LV2_Descriptor* descriptor,
double sample_rate,
const char* bundle_path,
const LV2_Feature* const * features);
@@ -222,7 +222,7 @@ public:
uint32_t flags,
const LV2_Feature *const * features);
- static LV2UI_Handle uiInstantiate(const struct _LV2UI_Descriptor * descriptor,
+ static LV2UI_Handle uiInstantiate(const LV2UI_Descriptor * descriptor,
const char * plugin_uri,
const char * bundle_path,
LV2UI_Write_Function write_function,