diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 3 | ||||
-rw-r--r-- | src/lv2_instance.h | 12 |
2 files changed, 7 insertions, 8 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 038bcce..a60ed67 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -24,7 +24,6 @@ camsync_la_SOURCES = \ configfile.cc \ configuration.cc \ configparser.cc \ - events.cc \ messagehandler.cc \ messagereceiver.cc \ mutex.cc \ @@ -32,7 +31,7 @@ camsync_la_SOURCES = \ semaphore.cc \ saxparser.cc \ thread.cc \ - versionstr.cc + versionstr.cc \ $(PLUGIN_GUI_SOURCES) \ lv2.cc \ lv2_gui.cc \ diff --git a/src/lv2_instance.h b/src/lv2_instance.h index e050e22..a16e549 100644 --- a/src/lv2_instance.h +++ b/src/lv2_instance.h @@ -37,12 +37,12 @@ #include <drumgizmo.h> typedef struct { - InputLV2 *in; - OutputLV2 *out; - DrumGizmo *dg; - sample_t *buffer; - size_t buffer_size; - LV2_URID_Map* map; + InputLV2 *in; + OutputLV2 *out; + DrumGizmo *dg; + sample_t *buffer; + size_t buffer_size; + LV2_URID_Map* map; } DGLV2; #endif/*__DRUMGIZMO_LV2_INSTANCE_H__*/ |