summaryrefslogtreecommitdiff
path: root/render/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'render/layout.h')
-rw-r--r--render/layout.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/render/layout.h b/render/layout.h
index fc2e2744a..b1495f2d9 100644
--- a/render/layout.h
+++ b/render/layout.h
@@ -16,7 +16,9 @@
#ifndef _NETSURF_RENDER_LAYOUT_H_
#define _NETSURF_RENDER_LAYOUT_H_
-void layout_document(struct box *box, int width);
-void layout_block_context(struct box *block);
+#include "netsurf/utils/pool.h"
+
+bool layout_document(struct box *box, int width, pool box_pool);
+bool layout_block_context(struct box *block, pool box_pool);
#endif