diff options
Diffstat (limited to 'lv2/core/lv2.h')
-rw-r--r-- | lv2/core/lv2.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lv2/core/lv2.h b/lv2/core/lv2.h index 82cf2b3..77d58ee 100644 --- a/lv2/core/lv2.h +++ b/lv2/core/lv2.h @@ -163,7 +163,7 @@ typedef struct { This structure provides the core functions necessary to instantiate and use a plugin. */ -typedef struct _LV2_Descriptor { +typedef struct LV2_Descriptor { /** A globally unique, case-sensitive identifier for this plugin. @@ -201,10 +201,10 @@ typedef struct _LV2_Descriptor { @return A handle for the new plugin instance, or NULL if instantiation has failed. */ - LV2_Handle (*instantiate)(const struct _LV2_Descriptor * descriptor, - double sample_rate, - const char * bundle_path, - const LV2_Feature *const * features); + LV2_Handle (*instantiate)(const struct LV2_Descriptor * descriptor, + double sample_rate, + const char * bundle_path, + const LV2_Feature *const * features); /** Connect a port on a plugin instance to a memory location. |