summaryrefslogtreecommitdiff
path: root/lv2/lv2_instance.h
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/lv2_instance.h')
-rw-r--r--lv2/lv2_instance.h9
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__*/