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_gui.cc | |
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_gui.cc')
-rw-r--r-- | lv2/lv2_gui.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lv2/lv2_gui.cc b/lv2/lv2_gui.cc index de5e566..5524a76 100644 --- a/lv2/lv2_gui.cc +++ b/lv2/lv2_gui.cc @@ -24,17 +24,16 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <lv2.h> - #include "lv2_gui.h" -#include "lv2_ui.h" #include <stdio.h> #include <string.h> +#include <lv2/lv2plug.in/ns/ext/instance-access/instance-access.h> +#include <lv2/lv2plug.in/ns/extensions/ui/ui.h> + #include "lv2_instance.h" -#include "lv2_instance-access.h" // From: http://codesearch.google.com/#50sg5qT6WNE/src/lv2_ui_dssi.c // git://repo.or.cz/nekobee.git/src/lv2_ui_dssi.c |