summaryrefslogtreecommitdiff
path: root/content/content.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-04-09 21:57:09 +0000
committerJames Bursa <james@netsurf-browser.org>2003-04-09 21:57:09 +0000
commit230cb5f01fbb9948ce5dd067e87535f9c012779c (patch)
tree81ff3fe7964015601baa8228172c46660c6bdc4f /content/content.h
parentc62f1a55e6dc2a38ce1f6994160df339843807b5 (diff)
downloadnetsurf-230cb5f01fbb9948ce5dd067e87535f9c012779c.tar.gz
netsurf-230cb5f01fbb9948ce5dd067e87535f9c012779c.tar.bz2
[project @ 2003-04-09 21:57:09 by bursa]
Table layout fixes, allowed type list. svn path=/import/netsurf/; revision=119
Diffstat (limited to 'content/content.h')
-rw-r--r--content/content.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/content/content.h b/content/content.h
index ff0dbc6dd..e65f62fb1 100644
--- a/content/content.h
+++ b/content/content.h
@@ -1,5 +1,5 @@
/**
- * $Id: content.h,v 1.5 2003/04/06 18:09:34 bursa Exp $
+ * $Id: content.h,v 1.6 2003/04/09 21:57:09 bursa Exp $
*/
#ifndef _NETSURF_DESKTOP_CONTENT_H_
@@ -26,8 +26,14 @@
* the content may be removed from the memory cache.
*/
-typedef enum {CONTENT_HTML, CONTENT_TEXTPLAIN, CONTENT_JPEG, CONTENT_CSS,
- CONTENT_PNG, CONTENT_OTHER} content_type;
+typedef enum {
+ CONTENT_HTML,
+ CONTENT_TEXTPLAIN,
+ CONTENT_JPEG,
+ CONTENT_CSS,
+ CONTENT_PNG,
+ CONTENT_OTHER
+} content_type;
struct box_position
{
@@ -72,6 +78,7 @@ struct content
{
struct css_stylesheet *css;
unsigned int import_count;
+ char **import_url;
struct content **import_content;
} css;