From 825c81f03a226a85b48e77a761be2a7245b9f030 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Fri, 2 Jan 2004 12:04:04 +0000 Subject: [project @ 2004-01-02 12:04:04 by bursa] Use memory pool for box tree. svn path=/import/netsurf/; revision=477 --- render/html.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'render/html.h') diff --git a/render/html.h b/render/html.h index b48c35929..33385a78d 100644 --- a/render/html.h +++ b/render/html.h @@ -10,6 +10,7 @@ #include "netsurf/css/css.h" #include "netsurf/render/box.h" +#include "netsurf/utils/pool.h" struct box; struct browser_window; @@ -49,6 +50,8 @@ struct content_html_data { struct content *content; struct box *box; } *object; + pool box_pool; /**< Memory pool for box tree. */ + pool string_pool; /**< Memory pool for strings. */ }; void html_create(struct content *c, const char *params[]); -- cgit v1.2.3