summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-17 16:34:58 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-18 17:37:13 +0200
commit8856f8521a42872a95579666b24ecfb65c5a20a1 (patch)
treeeab5136996379f77d52699c25f8855ea36d06cc2 /apps
parent03e5755b93e90cc4c09daad4c79b6016bf4ce43c (diff)
downloadmupdf-8856f8521a42872a95579666b24ecfb65c5a20a1.tar.xz
Merge common and internal headers into one.
Diffstat (limited to 'apps')
-rw-r--r--apps/mudraw.c2
-rw-r--r--apps/pdfapp.h3
-rw-r--r--apps/pdfclean.c3
-rw-r--r--apps/pdfextract.c1
-rw-r--r--apps/pdfinfo.c3
-rw-r--r--apps/pdfposter.c3
-rw-r--r--apps/pdfshow.c2
7 files changed, 7 insertions, 10 deletions
diff --git a/apps/mudraw.c b/apps/mudraw.c
index e38aa99b..366cdb8a 100644
--- a/apps/mudraw.c
+++ b/apps/mudraw.c
@@ -3,7 +3,7 @@
*/
#include "mupdf/fitz.h"
-#include "mupdf/pdf-internal.h" /* for mujstest */
+#include "mupdf/pdf.h" /* for mujstest */
#ifdef _MSC_VER
#include <winsock2.h>
diff --git a/apps/pdfapp.h b/apps/pdfapp.h
index ec87ab12..3e40e0c4 100644
--- a/apps/pdfapp.h
+++ b/apps/pdfapp.h
@@ -1,7 +1,8 @@
#ifndef PDFAPP_H
#define PDFAPP_H
-#include "mupdf/pdf-internal.h"
+#include "mupdf/fitz.h"
+#include "mupdf/pdf.h"
/*
* Utility object for handling a pdf application / view
diff --git a/apps/pdfclean.c b/apps/pdfclean.c
index 8d1748ae..3c1e810e 100644
--- a/apps/pdfclean.c
+++ b/apps/pdfclean.c
@@ -9,8 +9,7 @@
* TODO: linearize document for fast web view
*/
-#include "mupdf/fitz.h"
-#include "mupdf/pdf-internal.h"
+#include "mupdf/pdf.h"
static pdf_document *xref = NULL;
static fz_context *ctx = NULL;
diff --git a/apps/pdfextract.c b/apps/pdfextract.c
index d82f045b..e30b8268 100644
--- a/apps/pdfextract.c
+++ b/apps/pdfextract.c
@@ -3,7 +3,6 @@
*/
#include "mupdf/pdf.h"
-#include "mupdf/pdf-internal.h"
static pdf_document *doc = NULL;
static fz_context *ctx = NULL;
diff --git a/apps/pdfinfo.c b/apps/pdfinfo.c
index fdc23e99..fa21431e 100644
--- a/apps/pdfinfo.c
+++ b/apps/pdfinfo.c
@@ -3,8 +3,7 @@
* Print information about the input pdf.
*/
-#include "mupdf/fitz.h"
-#include "mupdf/pdf-internal.h"
+#include "mupdf/pdf.h"
pdf_document *xref;
fz_context *ctx;
diff --git a/apps/pdfposter.c b/apps/pdfposter.c
index c92de7aa..050a497f 100644
--- a/apps/pdfposter.c
+++ b/apps/pdfposter.c
@@ -9,8 +9,7 @@
* TODO: linearize document for fast web view
*/
-#include "mupdf/fitz.h"
-#include "mupdf/pdf-internal.h"
+#include "mupdf/pdf.h"
static int x_factor = 0;
static int y_factor = 0;
diff --git a/apps/pdfshow.c b/apps/pdfshow.c
index 78573e10..586a2fc6 100644
--- a/apps/pdfshow.c
+++ b/apps/pdfshow.c
@@ -2,7 +2,7 @@
* pdfshow -- the ultimate pdf debugging tool
*/
-#include "mupdf/pdf-internal.h"
+#include "mupdf/pdf.h"
static pdf_document *doc = NULL;
static fz_context *ctx = NULL;