summaryrefslogtreecommitdiffstats
path: root/src/module.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 13:20:11 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 18:32:12 +0100
commit4295f103d71d947e3ed92731e648ba409d3664ac (patch)
tree868aa0b684edc5f64400721188901da6b7c6269b /src/module.c
parent93fee4579d013ba36d1eedc273fc2d9385d76e19 (diff)
downloadganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.gz
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.tar.bz2
ganv-4295f103d71d947e3ed92731e648ba409d3664ac.zip
Clean up includes
Diffstat (limited to 'src/module.c')
-rw-r--r--src/module.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/module.c b/src/module.c
index a33b27c..e96932e 100644
--- a/src/module.c
+++ b/src/module.c
@@ -13,18 +13,28 @@
* with Ganv. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdlib.h>
-#include <string.h>
+#include "ganv-private.h"
+#include "ganv/box.h"
#include "ganv/canvas.h"
+#include "ganv/item.h"
#include "ganv/module.h"
+#include "ganv/node.h"
#include "ganv/port.h"
+#include "ganv/text.h"
+#include "ganv/types.h"
#include "ganv/widget.h"
-#include "./color.h"
-#include "./boilerplate.h"
-#include "./gettext.h"
-#include "./ganv-private.h"
+#include <cairo.h>
+#include <glib-object.h>
+#include <glib.h>
+#include <gobject/gclosure.h>
+#include <gtk/gtk.h>
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#define FOREACH_PORT(ports, i) \
for (GanvPort** i = (GanvPort**)ports->pdata; \