diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-02-04 17:06:50 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-02-04 23:18:18 +0000 |
commit | d13793b9e3511b0a1ada04c1863527e2bc948f1a (patch) | |
tree | af9e79f45fea8043cb165f33a4cc0e9fbe508254 /android/jni/Core.mk | |
parent | fc9281079e0b15a219337fe6e1ad8f8d1389bad1 (diff) | |
download | mupdf-d13793b9e3511b0a1ada04c1863527e2bc948f1a.tar.xz |
Add fz_output, and make output functions use it.
Various functions in the code output to FILE *, when there are times
we'd like them to output to other things, such as fz_buffers.
Add an fz_output type, together with fz_printf to allow things to
output to this.
Diffstat (limited to 'android/jni/Core.mk')
-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 c3f12155..c280b4b7 100644 --- a/android/jni/Core.mk +++ b/android/jni/Core.mk @@ -77,6 +77,7 @@ LOCAL_SRC_FILES := \ $(MY_ROOT)/fitz/stm_buffer.c \ $(MY_ROOT)/fitz/stm_comp_buf.c \ $(MY_ROOT)/fitz/stm_open.c \ + $(MY_ROOT)/fitz/stm_output.c \ $(MY_ROOT)/fitz/stm_read.c \ $(MY_ROOT)/draw/draw_affine.c \ $(MY_ROOT)/draw/draw_blend.c \ |