diff options
author | David Robillard <d@drobilla.net> | 2018-09-23 13:32:00 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-23 13:39:35 +0200 |
commit | 973b8fbca869e062f39caac140b39406ad9896c5 (patch) | |
tree | 29e29d5b15c2769ea504fc92b7de941e798ad538 /plugins/eg-scope.lv2/examploscope_ui.c | |
parent | 4db67120efca2d4c200d2e1ba5cf3d7b97cab97e (diff) | |
download | lv2-973b8fbca869e062f39caac140b39406ad9896c5.tar.xz |
Clean up includes
Diffstat (limited to 'plugins/eg-scope.lv2/examploscope_ui.c')
-rw-r--r-- | plugins/eg-scope.lv2/examploscope_ui.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/eg-scope.lv2/examploscope_ui.c b/plugins/eg-scope.lv2/examploscope_ui.c index 85dd95b..1639ae9 100644 --- a/plugins/eg-scope.lv2/examploscope_ui.c +++ b/plugins/eg-scope.lv2/examploscope_ui.c @@ -14,13 +14,27 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <assert.h> +#include <stdbool.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <cairo.h> +#include <gdk/gdk.h> +#include <glib-object.h> +#include <glib.h> +#include <gobject/gclosure.h> #include <gtk/gtk.h> +#include "lv2/atom/atom.h" +#include "lv2/atom/forge.h" +#include "lv2/atom/util.h" +#include "lv2/core/lv2.h" #include "lv2/ui/ui.h" +#include "lv2/urid/urid.h" + #include "./uris.h" // Drawing area size |