diff options
author | Robin Watts <robin.watts@artifex.com> | 2011-12-23 12:59:24 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2011-12-23 13:18:42 +0000 |
commit | 73e548cdd564c6c2099ceafaa4019a7dbb188a30 (patch) | |
tree | e2d0b498abf0f0057d7d565d6b465226e6491d60 /android/jni | |
parent | cc4dd0f8358d3de1594cc530b8f2691bccf194f0 (diff) | |
download | mupdf-73e548cdd564c6c2099ceafaa4019a7dbb188a30.tar.xz |
Generalise pdf_links to be fz_links.
Move to a non-pdf specific type for links. PDF specific parsing is
done in pdf_annots.c as before, but the essential type (and handling
functions for that type) are in a new file fitz/base_link.c.
The new type is more expressive than before; specifically all the
possible PDF modes are expressable in it. Hopefully this should
allow XPS links to be represented too.
Diffstat (limited to 'android/jni')
-rw-r--r-- | android/jni/Core.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/jni/Core.mk b/android/jni/Core.mk index 259f0398..0ed43751 100644 --- a/android/jni/Core.mk +++ b/android/jni/Core.mk @@ -25,6 +25,7 @@ LOCAL_SRC_FILES := \ $(MY_ROOT)/fitz/base_geometry.c \ $(MY_ROOT)/fitz/base_getopt.c \ $(MY_ROOT)/fitz/base_hash.c \ + $(MY_ROOT)/fitz/base_link.c \ $(MY_ROOT)/fitz/base_memory.c \ $(MY_ROOT)/fitz/base_object.c \ $(MY_ROOT)/fitz/base_string.c \ |