diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-06-11 19:15:09 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2012-06-11 19:15:09 +0200 |
commit | fa10bccb322dedee6b72d6f8c1834de8b194d3ca (patch) | |
tree | e3ffaecb550be05abc3eabb3ac812d75e351e17d /lv2/lv2_instance.h | |
parent | 30d7235c2ceda6d549438a9204b60a0e1f9186de (diff) |
Port to new LV2 state interface. Use new lv2-1.0 header files (from system) and remove local copies of same.
Diffstat (limited to 'lv2/lv2_instance.h')
-rw-r--r-- | lv2/lv2_instance.h | 9 |
1 files changed, 5 insertions, 4 deletions
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 <lv2.h> +#include <lv2/lv2plug.in/ns/lv2core/lv2.h> +#include <lv2/lv2plug.in/ns/ext/state/state.h> +#include <lv2/lv2plug.in/ns/ext/uri-map/uri-map.h> #include "input_lv2.h" #include "output_lv2.h" #include <drumgizmo.h> -#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__*/ |