From fa10bccb322dedee6b72d6f8c1834de8b194d3ca Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 11 Jun 2012 19:15:09 +0200 Subject: Port to new LV2 state interface. Use new lv2-1.0 header files (from system) and remove local copies of same. --- lv2/lv2_instance.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lv2/lv2_instance.h') diff --git a/lv2/lv2_instance.h b/lv2/lv2_instance.h index 2619e5e..b4772f6 100644 --- a/lv2/lv2_instance.h +++ b/lv2/lv2_instance.h @@ -27,22 +27,23 @@ #ifndef __DRUMGIZMO_LV2_INSTANCE_H__ #define __DRUMGIZMO_LV2_INSTANCE_H__ -#include +#include +#include +#include #include "input_lv2.h" #include "output_lv2.h" #include -#include "lv2_uri_map.h" - typedef struct { InputLV2 *in; OutputLV2 *out; DrumGizmo *dg; sample_t *buffer; size_t buffer_size; - LV2_URI_Map_Feature* urimap; + LV2_URI_Map_Feature *urimap; + LV2_State_Make_Path *makepath; } DGLV2; #endif/*__DRUMGIZMO_LV2_INSTANCE_H__*/ -- cgit v1.2.3