summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-11-19 14:57:18 +0100
committerTor Andersson <tor.andersson@artifex.com>2014-12-03 12:25:52 +0100
commit105d9d938396f867607406167c6e78f18625004d (patch)
tree472df76f21c000228ecd0ca9f6351c079282c44f /include
parentc64f2faf180e5c14aff85e46e6fe68114f741eda (diff)
downloadmupdf-105d9d938396f867607406167c6e78f18625004d.tar.xz
html: Images.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/html.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mupdf/html.h b/include/mupdf/html.h
index 27b9faad..edeb51d6 100644
--- a/include/mupdf/html.h
+++ b/include/mupdf/html.h
@@ -170,6 +170,7 @@ enum
{
FLOW_WORD,
FLOW_GLUE,
+ FLOW_IMAGE,
};
struct flow
@@ -178,6 +179,7 @@ struct flow
float x, y, w, h, em;
struct computed_style *style;
char *text, *broken_text;
+ fz_image *image;
struct flow *next;
};